Big Java example project "invest2"

You can use this project as follows:

 - invoke the main method of the driver class InvestmentTest by right-clicking 
 on the class representation and selecting the main method.
 - interactively create Investment objects of differing balances and rates of interest
 - call the waitYears method of each object specifying the number of years to accumulate interest
  for the account
 - then call the getBalance method to find out the projected balance
 - use BlueJ's inspection capabilities to watch change of internal state after each call
  
This project illustrates concepts covered in Big Java, Chapter 6 
"Iteration".
  
 - to be able to program loops with the while, for, and do statements
 - to avoid infinite loops and off-by-one errors
 
