So I have this piece of code.
我有这段代码。
class Hangman {
public static void main(String[] args) {
char LetterGuess;
int x;
int num = 0; //Number of letters in a word
int y = 0; //(int)(Math.random() * 16 );
char CurrLet;
String word = "yes" ;
byte[] Guess = new byte[15];
switch(y) {
case 0:
word = "blindfold" ;
num = word.length();
break;
}
for(boolean guessed = false; guessed = true;) {
for(x = 0; x < num +1; x++) {
if(Guess[x] == 1) {
CurrLet = word.charAt(x);
System.out.print(CurrLet);
} else {
System.out.print(" _");
}
}
System.out.println("");
System.out.println("");
LetterGuess = Keyboard.readChar();
for(x = 0; x < num +1; x++) {
CurrLet = word.charAt(x);
if(LetterGuess == CurrLet) {
Guess[x] = 1;
}
}
}
}
class