#include <iostream>
using namespace std;
//复数类
class Complex
{
public:
Complex(){real = 0;imag = 0;}
Complex(double r){real = r;imag = 0;}
Complex(double r,double i){real = r;imag = i;}
void display();
operator double(){return real;}
private:
double real;
double imag;
};
void Complex::display()
{
cout << "(" << real << "," << imag << "i)" << endl;
}
int main()
{
Complex c1(3,4),c2(5,-10),c3;
double d = c1 + 3.3;
c3 = d;
cout << "c1=";c1.display();
cout << "c2=";c2.display();
cout << "c1 + 3.3=" << d << endl;
cout << "c3 = " ; c3.display();
system("pause");
return 0;
}
|