In this set of exercises, you are to implement a class named Even_Num that represents even integers. The invariant/constraint/rule for this
class is that no object is ever allowed to contain an odd value. You are to code the .h file and the .cpp file (two separate questions).
The usual set of functions/operators:
+ and += operators
/ and /= operators
get method
+= and/= should be members
+ and/ should be non-members (you can make them friends or not)
get should be a const member function