摘要: #include<iostream>#include<cmath>using namespace std;class Complex{ public: Complex(double xx,double yy=0):x(xx),y(yy){} void add(Complex c){ x+=c.x; 阅读全文
posted @ 2019-04-02 00:35 红袍小恶魔 阅读(232) 评论(0) 推荐(0) 编辑