编写复数类CComplex,实现整数与实数,复数与复数之间的加.减.乘等各种基本运算

问题描述:

编写复数类CComplex,实现整数与实数,复数与复数之间的加.减.乘等各种基本运算

#include #include #include class CComplex{public:friend double real (const CComplex&);friend double imag (const CComplex&);friend CComplex operator + (const CComplex&,const CComplex&);friend CComplex ...