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.
ericwalter 0 Newbie Poster
Ezzaral 2,714 Posting Sage Team Colleague Featured Poster
bbman commented: Reaching the goal is important...but not the path... -1
Arrorn -4 Light Poster
WaltP commented: We are not a homework service. Do NOT do their homework for them! -4
NormR1 563 Posting Sage Team Colleague
Arrorn -4 Light Poster
ericwalter 0 Newbie Poster
Ezzaral 2,714 Posting Sage Team Colleague Featured Poster
Arrorn -4 Light Poster
NormR1 563 Posting Sage Team Colleague
Ezzaral 2,714 Posting Sage Team Colleague Featured Poster
sirlink99 56 Practically a Master Poster
Ezzaral 2,714 Posting Sage Team Colleague Featured Poster
Arrorn -4 Light Poster
bbman 12 Junior Poster
Ezzaral commented: I posted no links. At least pay attention if you wish to make inane comments. -3
peter_budo 2,532 Code tags enforcer Team Colleague Featured Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.