摘要: 实验任务三 //Complex.hpp #include<iostream> #include<cmath> using namespace std; class Complex { public: Complex() : real{0}, imag{0} {}; Complex(double r, 阅读全文
posted @ 2021-10-20 19:26 Pommissarzhu 阅读(23) 评论(3) 推荐(2) 编辑