java

 

  • You will be creating a small guessing game which consists of two classes, GameDriver and RandGuessGame.
  • The game will randomly generate five numbers between 1 and 100, show the player only the first and last, and they must guess if the sum of all numbers is greater than 250.
  • The GameDriver is provided for you, as is starter code for RandGuessGame. You must write the remainder of RandGuessGame to the provided specifications. Javadocs for these classes are in the starter project you will download from Web-CAT (providedDoc > index.html). There is also a text file which provides some example output.