摘要: #include #include using namespace std;class Complex{public: Complex() { real=0; imag=0; } Complex(double r,double i) { real=r;... 阅读全文
posted @ 2017-05-13 21:33 衣带渐宽、为伊憔悴 阅读(101) 评论(0) 推荐(0)
摘要: #include #include using namespace std;class Complex{public: Complex(); Complex(double r,double i); double get_real(); double get_imag(... 阅读全文
posted @ 2017-05-13 21:31 衣带渐宽、为伊憔悴 阅读(158) 评论(0) 推荐(0)