Implement the Money class discussed in class. This class should represent a dollar and cents amount with 0-99 cents and the cents being the same sign as the dollars. The class should at a minimum have getter methods that return the dollars and cents, a toString() method, all reasonable constructors, addition and subtraction methods, and a main() method that provides a thorough test of all the methods in the class.
This should not be a hard problem. 90% of it was done for you in the third class.