2019年3月31日
摘要: #include #include using namespace std; class Complex { public: Complex (double xx=0,double yy=0):x(xx),y(yy){} Complex (Complex &c):x(c.x),y(c.y){} void show() { ... 阅读全文
posted @ 2019-03-31 13:56 happy-every-day 阅读(112) 评论(1) 推荐(0) 编辑