GuessingGame

From ggc

Jump to: navigation, search

01 /**
02  * All about my application here.
03  @author Jam Jenkins       
04  */
05 public class GuessingGame
06 {
07   public static void main(String[] args)
08   {
09     Guess guess;//declares
10     guess=new Guess();//initializes
11     while(guess.gameIsOver()==false)
12     {
13       guess.requestNumber();
14       guess.giveHint();
15       guess.remaining();
16     }
17   }
18 }


Download/View GuessingGame.java





Views
Personal tools
Add to 
del.icio.usAdd to 
diggAdd to 
FacebookAdd to 
favoritesAdd to 
GoogleAdd to 
MySpaceAdd to 
PrintAdd to 
SlashdotAdd to 
StumbleUponAdd to 
Twitter