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 trialTaylor Kay-Green
307 PointsI understand the video but cant get it to work on this question. What should I do?
Why do I have so many errors?
// I have initialized a java.io.Console for you. It is in a variable named console.
String response;
boolean isInvalidWord;
do {
response = console.readLine("Do you understand do while loops?");
isInvalidWord=(noun.equalsIgnoreCase("no"));
if (isInvalidWord) {
console.printf("Ok you do not undestand.");
} while (isInvalidWord);
2 Answers
jcorum
71,830 PointsMore along these lines. The chief issue is to create the correct boolean in the condition, and the printf statement has to be outside the loop:
String response;
do {
response = console.readLine("Do you understand do while loops?");
} while (response == "No");
console.printf("Because you said %s, you passed the test!", response);
Taylor Kay-Green
307 PointsThank You