Question
1.In class Complex, define a multiply method that returns the product of two Complex numbers. Suppose you are trying to compute the product of two
1.In class Complex, define a multiply method that returns the product of two Complex numbers. Suppose you are trying to compute the product of two complex numbers a + bi and c + di. The real part will be ac bd, while the imaginary part will be ad + bc. Modify ComplexTest to test your solution.
2.Overload the add, subtract and multiply methods of your class, so that instead of taking one complex as an argument and returning a complex, they take two complex number as arguments and return the result in a new complex object. Make this methods static.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started