Create a struct called Complex for performing arithmetic with complex numbers. Write a driver program to test your struct. Complex numbers have the form: realPart + imaginaryPart * i where i is the square root of -1 Use double variables to represent data of the struct. Provide a function that enables an object of this struct to be initialized when it is declared. The function should contain default values in case no initializers are provided. Also provide functions

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter12: Adding Functionality To Your Classes
Section: Chapter Questions
Problem 1PP
icon
Related questions
Question

- Create a struct called Complex for performing arithmetic with complex numbers.
Write a driver program to test your struct. Complex numbers have the form:
realPart + imaginaryPart * i
where i is the square root of -1
Use double variables to represent data of the struct. Provide a function that enables an
object of this struct to be initialized when it is declared. The function should contain
default values in case no initializers are provided. Also provide 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

Expert Solution
steps

Step by step

Solved in 3 steps with 2 images

Blurred answer
Knowledge Booster
Datatypes
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