摘要: #include<iostream> #include<math.h> using namespace std; class Complex { public: Complex(double r=0,const double i=0) { real=r; imag=i; } Complex(cons 阅读全文
posted @ 2021-10-24 22:57 Rwang0 阅读(46) 评论(3) 推荐(2)