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 trialdavid vos
1,479 PointsIm stuck with the loop
can anyone help me with the loop. I'm trying to show a message when the answer is yes
// I have initialized a java.io.Console for you. It is in a variable named console.
String response;
if (response == "yes"); { console.printf("Because you said Yes, you passed the test!");
}
boolean wrong;
do {
response = console.readLine("Do you understand do while loops? ");
wrong = (response.equalsIgnoreCase("no"));
if (wrong) {
console.printf("try again");
}
}while(wrong);
1 Answer
Daniel Phillips
12,632 PointsLine 3 (if (response == "yes")
) needs to be moved down below the do while loop so that when the user types something other than "no" (like "yes"), the do while will end and the program continues to the if (response == "yes")
line.
Then you need to modify that if (response == "yes")
line to remove the semi-colon that is right after if (response == "yes")
. That semicolon will end the if and not execute the rest of the line.