in C++ There should be three files: header file containing the definition of class .h, file containing the class implementation should be .cpp, and the driver code (i.e., the main() function) main.cpp Create a class called Complex for performing arithmetic with complex numbers. Write a driver program to test your class. Complex numbers have the form: realPart + imaginaryPart * i where i is √−1. Use double variables to represent the private data of the class. Provide a constructor function that enables an object of this class to be initialized when it is declared. The constructor should contain default values in case no initializers are provided. Provide public member functions 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)  Printing Complex numbers in the form (a, b) where a is the real part and b is the imaginary part. A sample output of your program should look like follows: (1, 7) + (9, 2) = (10, 9) (10, 1) – (11, 5) = (-1, -4) There should be three files: header file containing the definition of class .h, file containing the class implementation should be .cpp, and the driver code (i.e., the main() function) main.cpp C++

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter12: Adding Functionality To Your Classes
Section12.2: Providing Class Conversion Capabilities
Problem 2E
icon
Related questions
Question

in C++

There should be three files: header file containing the definition of class .h, file containing the class implementation should be .cpp, and the driver code (i.e., the main() function) main.cpp

Create a class called Complex for performing arithmetic with complex numbers. Write a driver program to test your class. Complex numbers have the form:

realPart + imaginaryPart * i

where i is √−1.
Use double variables to represent the private data of the class. Provide a constructor function that enables an object of this class to be initialized when it is declared. The constructor should contain default values in case no initializers are provided. Provide public member functions for each of the following:

  1. a)  Addition of two Complex numbers: The real parts are added together and the imaginary parts are added together.

  2. 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.

  3. c)  Printing Complex numbers in the form (a, b) where a is the real part and b is the imaginary part.

A sample output of your program should look like follows:

(1, 7) + (9, 2) = (10, 9)

(10, 1) – (11, 5) = (-1, -4)

There should be three files: header file containing the definition of class .h, file containing the class implementation should be .cpp, and the driver code (i.e., the main() function) main.cpp

C++

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Reference Types in Function
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr