摘要:
complex.hpp源代码 //#include "complex.h" #include <iostream> #include <cmath> using namespace std; class Complex { public: Complex(int r = 0, int i = 0) 阅读全文
摘要:
complex.hpp //#include "complex.h" #include <iostream> #include <cmath> using namespace std; class Complex { public: Complex(int r = 0, int i = 0) : r 阅读全文