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 ) / (c 2 + d 2 ), (−ad + bc ) / (c2 + d2 ))
b. Write the definitions of the functions to overload the operators - and / as defined in part a.
c. Write a test program that tests the various operations on the class complexType. Format your answer with two decimal places.
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.