i) Create a class called Complex for performing arithmetic with complex numbers.
ii) Write a driver program to test your class.
Complex numbers have the form
realPart+imaginaryPart *i
Where i is:
√-1
Use floating point variables to represent the private data of the class. Provide a constructor method 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 initializes performing arithmetic with complex numbers are provided. Provide public methods for each of the following
a) Addition of two Complex numbers: The real parts are added together and the imaginary parts are added together.
b) Subtraction of 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) Print Complex numbers in the form (a, b) where a is the real part and b is the imaginary part.
Recommended Answers
Jump to PostNah. I have other more pressing things to work on.
Perhaps you should give it a try yourself. When you have some code or specific questions about the parts you are stuck on, come back and post them and perhaps someone can offer some assistance.
Jump to PostDo you expect some one to learn from copy and pasting?
See: http://www.javaprogrammingforums.com/cafe/9544-problem-spoon-feeding.html
Jump to Postso just don't.....
That's what we are all saying.
Jump to Post@Arrorn this discussion is going nowhere.
We do ask people to attempt to do their part of task instead of dropping on our forum expecting fast reply with full working solution, see this@ericwalter if you want to continue discussion I do advice you to create new post …
All 14 Replies
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.