I'm a beginner programmer and I'm trying to make a very simple version of Hangman. I'm having so problem with my code. This is the portion of code I'm having a problem with:
for(int i = 0; i <= wordLength - 1; i++ ) {
if (letter == theWord.charAt( i )) {
onemore=i+1;
System.out.println("This letter matches with letter number " + onemore + " in the word.");
***displayWord.charAt(i)=letter;***
System.out.println("The word so far is " + displayWord);
}
}
The part I'm getting an error with has 3 asterisks on either side of it.
displayWord is a String and letter is a char.
Netbeans tells me:
unexpected type
required: variable
found: value
I have no idea what the problem is.
Basically, Java
String
s are immutable, that is, there contents can't be changed.You'd be better of using a
StringBuilder
.This results in:
Now the short version might look something like