Use operators to overload the four arithmetic operations of the plural

Source: Internet
Author: User

Program code:

# Include
 
  
Using namespace std; class Complex {public: Complex () // defines the default constructor initialization plural {real = 0; imag = 0 ;} // use the initialization table to initialize the Complex (double r, double I): real (r), imag (I) {} Complex operator + (Complex & c2 ); // Complex addition Complex operator-(Complex & c2); // Complex subtraction Complex operator * (Complex & c2 ); // multiplication of the Complex number Complex operator/(Complex & c2); // division of the Complex number void display (); // display the Complex number private: double real; // real-part double imag of the plural number; // virtual part of the plural number}; // addition of the plural number Complex: operator + (Complex & c2) {Complex c3; c3.real = real + c2.real; c3.imag = imag + c2.imag; return c3;} // subtraction of Complex numbers Complex: operator-(Complex & c2) {Complex c3; c3.real = real-c2.real; c3.imag = imag-c2.imag; return c3;} // multiplication of Complex numbers Complex: operator * (Complex & c2) {Complex c3; c3.real = real * c2.real-imag * c2.imag; c3.imag = real * c2.imag + imag * c2.real; return c3;} // division of Complex numbers Complex: operator/(Complex & c2) {Complex c3; c3.real = (real * c2.real + imag * c2.imag)/(c2.real * c2.real + c2.imag * c2.imag); c3.imag = (imag * c2.real-real * c2.imag) /(c2.real * c2.real + c2.imag * c2.imag); return c3;} // display the plural void Complex: display () {cout <
  
   


Execution result:


Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.