Assignment 1

Due Date:
September 8, 2005

Grading:
60% Code
30% Documentation of Code
10% Run Output

Turn In:
Print out of code
Print out of run (Demonstrate that you code works)
Print out of one page of your generated JavaDoc. 

Summary:
Implement a 'guess my number' game.

How the game is played:
The program will select a random integer between 1 and 10.
The user will then be prompted to enter a guess for the value of the number.
The program will respond by informing the user that their guess is:
	Higher than the selected number,
	Lower than the selected number,
	or
	Equal to the selected number

The game continues until the user correctly guesses the random number.
After the user sucessfully guesses the number he will be asked to play again.

details:
Implement two classes. One class consists of a main function that will
contain a control loop and the user interaction code. The second class
will be used to generate the random number and will be used to check
if the random number is equal to  less than or greater than the number
entered. Below is an example of the possible method names found in the
second class.

void initNumber()
boolean isGreaterThan( int )
boolean isLessThan( int )
boolean isEqual( int )

Notes:
I know you can do this in one class file, but the requirement is two. Random
numbers and integer input are covered in the book and in online resources.
Also, the online documents will help if you are stuck!