Medium
What is the correct statement for the following code ?
class Complex {
public:
Complex(double x, double y) : x(x), y(y) {}
double getX() const {return x;}
double getY() const {return y;}
Complex operator+(Complex z2);
private:
double x;
double y;
};
Complex Complex::operator+(Complex z2) {
return Complex(x+z2.getX(), y+z2.getY());
}
Author: SamuelStatus: PublishedQuestion passed 268 times
Edit