Non-default Constructor

A complex number consists of real and imaginary parts. The imaginary part is a real multiple of the imaginary unit i, the square root of -1. In the Complex class, the complex number is stored as a real part (in m_real) and an imaginary part (in m_imag).

To begin, you need to copy the skeletal program files (lab5.cpp, Complex.h, and Complex.cpp) to your working directory:

    cp /afs/umbc.edu/users/c/m/cmarron/pub/cmsc202/lab5.zip .
    unzip lab5.zip

In Complex.cpp, implement the non-default constructor consistent with the declaration in Complex.h.