摘要:
#include using namespace std;class Complex{public: Complex();//此函数必须定义 Complex(double r,double i); friend Complex operator+(Comple... 阅读全文
摘要:
#include #include using namespace std;class Complex{public: Complex(); Complex(double r,double i); Complex operator+(Complex &c2); Com... 阅读全文