c++实现加法器

转自:http://blog.csdn.net/qq_36691454/article/details/54695712?locationNum=2&fps=1

[cpp]  view plain  copy
  1. #include   
  2. using namespace std;  
  3.   
  4. class complex{  
  5. private:  
  6.     double real;  //实部  
  7.     double imag;  //虚部  
  8. public:  
  9.     complex(): real(0.0), imag(0.0){ }  
  10.     complex(double a, double b): real(a), imag(b){ }  
  11.     complex operator+(const complex & A)const;  
  12.     void display()const;  
  13. };  
  14.   
  15. //运算符重载  
  16. complex complex::operator+(const complex & A)const{  
  17.     complex B;  
  18.     B.real = real + A.real;  
  19.     B.imag = imag + A.imag;  
  20.     return B;  
  21. }  
  22.   
  23. void complex::display()const{  
  24.     cout<" + "<"i"<
  25. }  
  26.   
  27. int main(){  
  28.     complex c1(4.3, 5.8);  
  29.     complex c2(2.4, 3.7);  
  30.     complex c3;  
  31.     c3 = c1 + c2;  
  32.     c3.display();  
  33.     
  34.     return 0;  
  35. }  

你可能感兴趣的:(c++实现加法器)