摘要: #include using namespace std; class Complex { public: Complex(float r1,float i1); Complex(float r1); void add(Complex c); void show(); private: float r; float i; }; Complex::Complex(float r1,float ... 阅读全文
posted @ 2019-04-02 20:19 陈昱霖 阅读(95) 评论(0) 推荐(0)