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

Aaron Maguire
Aaron Maguire
4,645 Points

I know that I need to put something after "while", but what? Are there any other errors that I'm missing?

Thanks

Example.java
String response;
do {
  response = console.readLine("Do you understand do while loops?");
} while();

1 Answer

james south
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
james south
Front End Web Development Techdegree Graduate 33,271 Points

in the loop you are asking for a response. the loop should run until you get a certain answer, at which point the loop can exit. what you have is fine you just need to add a statement to the while that will resolve to false upon a certain answer being entered so the loop can exit.