Question: please help! this is in C++ Create a class called complexNumber that stores a complex number of the form a+bi, where i is -1. a
please help! this is in C++

Create a class called complexNumber that stores a complex number of the form a+bi, where i is -1. a is the real and b is the imaginary part of the number1. You should be able to get the real and imaginary parts of the number. a and b can be negative, e.g., "3+4i", "-3+4i", "3-4i", and -3-4i" Implement the ability to add, subtract, and multiply two complexNumber objects and save the result in another complexNumber object by overloading operators+,-, and *. 1. 2. 3. Overload the operators >and
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
