Using C++ 11 Create a class called Complex for performing arithmetic with complex numbers. Write a 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 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 that perform the following tasks: a) Adding two complex numbers: The real parts added together and the imaginary parts are added together. You should pass two objects to your function. b) Subtracting two complex numbers: The real parts subtracted together and the imaginary parts are subtracted together. You should pass two objects to your function. c) Printing Complex numbers in the form (a , b), where a is the real part and b is the imaginary part. (Do not use operator overloading for this assignment.)

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

Using C++ 11

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

realPart + imaginaryPart * i

Where is  − 1

Use double 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. The constructor should contain default values in case no initializers are provided. Provide public member functions that perform the following tasks:

  1. a) Adding two complex numbers: The real parts added together and the imaginary parts are added together. You should pass two objects to your function.
  2. b) Subtracting two complex numbers: The real parts subtracted together and the imaginary parts are subtracted together. You should pass two objects to your function.
  3. c) Printing Complex numbers in the form (a , b), where a is the real part and b is the imaginary part.

(Do not use operator overloading for this assignment.)

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 5 steps with 4 images

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