Question: 6. Implement the complex number class below: (15 Point) class Complex ( float re; float im; Il complex number class I/ real part /l imagination
6. Implement the complex number class below: (15 Point) class Complex ( float re; float im; Il complex number class I/ real part /l imagination part public: Complex(float r=0.0, float i=0.0){re=r, im-i;} Complex(const Complex& c) { re-cre; im=c.im;} void operator=(const Complex& c){re=c.re; im=c.im;} Complex operator-Oconst freturn Complex(-re, -im);) Complex operator +(const Complex&)const Complex operator-(const Complex&) const; Complex operator *(const Complex&) const; Complex operator/(const Complex&)const; II constructor // copy constructor // assignment ll unary negation Il addition operator ll subtraction operator l/ multiplication operator lI division operator
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
