摘要: 实验任务3 Complex.hpp源代码: 1 #ifndef COMPLEX_HPP 2 #define COMPLEX_HPP 3 4 #include<iostream> 5 #include<cmath> 6 using namespace std; 7 class Complex { 8 阅读全文