here is my header file:
#ifndef COMPLEX_HPP #define COMPLEX_HPP class Complex { private: float real, imag; public: Complex(float R, float I); flo