View Single Post
Old 03-06-2004, 03:29 PM   #3 (permalink)
AL9045
Addict
 
Location: Virginia
My apologies.

Currently I have the program set up for you to enter 10 words and then it will randomly choose one of the words for you to guess. After that I really have no idea what to do, so this is what I tried

System.out.print("\n\nPlease guess a letter: ");
String letter = TextIO.getln();
if(letter == theWord.substring(theWord.length()))
System.out.println(theWord.substring(g));

Right now I'm trying to get it, so when you guess a correct letter it will print out the letter in the word like this.

Suppose the word is Dog and I guessed "O".

-O-

And so on.
AL9045 is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47