Pencil & paper
From the Text, Exercises 6.1, 6.2, 6.4(Essay. Good English and structure required!).
Programming:
Do exercise 6.6 from the text. Since we have not yet dealt with
operator overloading, you will have to implement the complex arithmetic
operations as class public member functions. The problem statement tells
how addition and subtraction work, so you must implement Add(const Complex
&a, const Complex &b) and Subtract(const Complex &a, const
Complex &b). They must return the result as a const Complex reference
A constructor is also required, as well as a print function. (If you want
a more complete class, you may want to look in a math book to review how
multiplication and division are defined.)