Create a class called Complex for performing arithmetic with complex numbers. Complex numbers have the form realPart + imaginaryPart * i where i2 = -1. Write a program to test your class.
Requirements:
• Use floating-point variables to represent the private data of the class.
• Provide a constructor that enables an object of this class to be initialized when it is declared.
• Provide a no-argument constructor with default values in case no initializers are provided.
• Provide public methods that perform the following operations:
a) Add two Complex numbers: The real parts are added together and the imaginary parts are added together.
b) Subtract two Complex numbers: The real part of the right operand is subtracted from the real part of the left operand, and the imaginary part of the right operand is subtracted from the imaginary part of the left operand.
c) Multiply two Complex numbers: Use the following formula,
1
Expert's answer
2012-12-24T09:28:48-0500
Unfortunately, your question requires a lot of work and cannot be done for free. Submit it with all requirements as an assignment to our control panel and we'll assist you.
Comments
Leave a comment