摘要: 实验任务3 "Complex.hpp" #include<iostream> #include<cmath> using namespace std; class Complex { public: Complex(double a = 0,double b = 0):real{a},imag{b} 阅读全文
posted @ 2021-10-21 18:35 Re-cursion 阅读(40) 评论(4) 推荐(1)