Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write this program in C++: Write the Complex class that allows to operate with complex numbers. This class will store the real and imaginary value

Write this program in C++:

Write the Complex class that allows to operate with complex numbers. This class will store the real and imaginary value of the complex number in member variables, as well as provide overloaded operators to perform the most common operations with said numbers. A constructor with parameters will be necessary to be able to initialize the values of the attributes.

Given the numbers: z1 = (a, b) and z2 = (c, d), implement the operations:

image text in transcribed

Displays the 5 operations for two input complex numbers.

Note1: In the difference the operator must be -

Note2: There is a bug in the product. The second element must be ad+bc

Note 3: For the scalar part, the * operator cannot be used again (select any other that has not been used). In the example I used %.

Complex operator % (float k){ // the second element is of type float while the first is an object of class Complex

Total complex(1,1);

total.real = real*k;

total.img = img*k;

return total;

= . Suma: Z1 + Z2 = (a + c,b+d) Diferencia: Zn + Z2 = (a -c,b-d) Producto: 21 22 = (ac bd , ad bc) : ac + bd -ad + bc 21 22 c +6 c +6 Producto por un escalar: k_z = (ka,kb) = Divisin: 1 - (not be

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Intelligent Information And Database Systems Asian Conference Aciids 2012 Kaohsiung Taiwan March 2012 Proceedings Part 2 Lnai 7197

Authors: Jeng-Shyang Pan ,Shyi-Ming Chen ,Ngoc-Thanh Nguyen

2012th Edition

3642284892, 978-3642284892

More Books

Students also viewed these Databases questions

Question

=+ Is secondary industrial action common and/or legal?

Answered: 1 week ago

Question

=+What sanctions are available to employers

Answered: 1 week ago

Question

=+ If strikes occur, are they legally regulated?

Answered: 1 week ago