不要问我一个晚上在干啥,就写写这种烦到极点的类,啰嗦! #include <bits/stdc++.h> using namespace std; class complexed { public: complexed(); complexed(double real); complexed(double real,double imag); void display(); void set(double r,double i); private: double real,imag; }; c…