Complex Class with >> and << Operators
Understand how to implement >> and << operators for a Complex class.
We'll cover the following...
We'll cover the following...
Problem
Write a program that implements a Complex class. It should contain << and >> overloaded functions to receive or display Complex objects.
Sample run
Here’s what you should see when you run the program.
Enter values of a Complex object:
1.1
2.2
Enter values of a Complex object:
2.5
4.6
Values of a and b are :
1.1 + 2.2i
2.5 + 4.6i
Coding solution
Here is a solution to the problem above.