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 trialmike LaBianca
Courses Plus Student 2,456 Pointsneed help on prompting in java
didnt really understand the video so need some help
// I have initialized a java.io.Console for you. It is in a variable named console.
String response;
response = console.readLine("Do you understand do while loops?");
1 Answer
Steve Hunter
57,712 PointsHi Mike,
You've got the first bit sorted just fine. So now we're into the do while
loop.
This loop keeps going around until a certain condition is met. In this case, that condition is the user inputting "No" as their answer, which we store in response
.
That looks like:
String response;
do {
response = console.readLine("Do you understand do while loops?");
} while (response.equals("No"));
So here, we're declaring the response variable outside of the loop. Then we enter the loop which stores the user's input in the response
variable. Next, the response is tested, if it is "No", the loop repeats. If not, well ... that's the next part of the challenge. :-)
Hope that helps,
Steve.