摘要: 实验任务三#include<iostream>#include<math.h>using namespace std;class Complex {public: Complex(double x = 0, double y = 0) :real(x), imag(y) {}; Complex(Co 阅读全文