Big Java & Java Concepts example project "random1"

You can use this project as follows:

 - invoke the main method of the driver class DieTester by right-clicking 
 on the class representation and selecting the main method.
 - interactively create Die objects, firstly with 6 sides 
   (try other numbers of sides as well).
 - call the cast method of each object 
 
  
This project illustrates concepts covered in Big Java & Java Concepts, Chapter 7 
"Iteration".
  
 - to be able to program loops with the while, for, and do statements
 - to avoid infinite loops and off-by-one error