Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

write in c++ a code that will - a. Extend the definition of the class complexTyp

ID: 3677167 • Letter: W

Question

write in c++ a code that will

- a. Extend the definition of the class complexType so that it performs the subtraction and division operations. Overload the operators subtraction and division for this class as member functions. If (a, b) and (c, d ) are complex numbers: (a, b) - (c, d) = (a - c, b - d ). If (c, d ) is nonzero: (a, b) / (c, d) = ((ac + bd) / (c2 + d 2), (-ad + bc) / (c2 + d 2)).

b. Write the definitions of the functions to overload the operators - and / as defined in part a.

c. Write a test program that tests various operations on the class complexType. Format your answer with two decimal places.

Explanation / Answer

#include #include #include #include class complexType { int imaginary,real; public: void readnumber() { coutreal; coutimaginary; } void displaynumber() { cout