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 trial

Java Java Basics Perfecting the Prototype Looping until the value passes

Stuck on second step of the Do While

i can not see what i am doing wrong for the second step of the Do while quiz

Example.java
// 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 = (response.equalsIgnoreCase("no"));
} while (response.equalsIgonreCase("no"));

2 Answers

} while (response.equalsIgonreCase("no"));
// There is a typo somewhere on this line
// the way you wrote the program, these lines are unecessary
 boolean isInvalidWord;
 isInvalidWord = (response.equalsIgnoreCase("no"));
Franciscus Agnew
Franciscus Agnew
23,097 Points

Hello James,

I noticed to things that were problematic with your code:

  1. You were missing an if statement to check if the user input was invalid or in this case "no".
  2. Remember Dont Repeat Yourself! Not using your boolean variable "isInvalidWord" as your condition for the do-while loop to exit.

As shown here:

String response;
boolean isInvalidWord;
do {
  response = console.readLine("Do you understand do while loops? ");
  isInvalidWord = (response.equals("no"));
  if (isInvalidWord) {
    console.printf("Invalid response. Try again. \n\n");
  }
} while (isInvalidWord);

Hope that helps!