Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialVenzislav Simeonov
351 PointsCan someone help??
I don't know what I'm doing wrong!!!
String response;
boolean isInvalidWord;
do {
response = console.readLine("Do you understand do while loops? ");
isInvalidWord = (response.equalsIgnoreCase("No")
if (isInvalidWord) {
console.printf("Try again. \n\n");
}
} while(isInvalidWord);
2 Answers
James Treehouse
6,593 PointsisInvalidWord = (response.equalsIgnoreCase("No")
I think you just need to add a semi-colon to the end of that statement
Mustafa Dilaver
12,671 PointsString response;
do {
response = console.readLine("Do you understand do while loops?");
} while (response.equals("No"));
console.printf("Because you said %s, you passed the test!", response);
Grigorij Schleifer
10,365 PointsGrigorij Schleifer
10,365 PointsHi,
Jimmi already sead. Add a semicolon but add a " ) " after ("No") ....
So your line should look like this:
isInvalidWord = (response.equalsIgnoreCase("No"));
or :
let the () and do it like this:
isInvalidWord = response.equalsIgnoreCase("No");
Grigorij