摘要:
#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
阅读(121)
评论(1)
推荐(0)
浙公网安备 33010602011771号