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 trialPetter Jonasson
808 Pointshelp me please!
Now continually prompt the user in a do while loop. The loop should continue running as long as the response is No. Don't forget to declare response outside of the do while loop.
// I have initialized a java.io.Console for you. It is in a variable named console.
String respones;
do {
whileLoop = console.readLine("Do you understand while loops? ");
respones = whileLoop;
no = (respones.equalsIgnoreCase("No"));
} while(no);
1 Answer
Steve Hunter
57,712 PointsHi Petter,
You're nearly there with this.
First, you've declared the variable response
before the loop - the challenge enforces the name of the variable - it might be worth checking its spelling.
Inside the loop, you are prompting for user input using readLine
- that's correct. However, assign whatever the user enters into response
so that response = console.readLine ...
etc.
Then, the while
condition, as you've put, is testing, using equals
or equalsIgnoreCase
, whether the response
is "No"
. Do this within the brackets after the while
keyword.
So:
String response;
do{
response = console.readLine("Do you understand while loops?: ");
} while(response.equals("No"));
That should get you through the challenge.
Steve.
Petter Jonasson
808 PointsThank you so much. Helped so much. Hope you have a wonderful evening
Steve Hunter
57,712 PointsNo problem - glad you got it fixed.
Petter Jonasson
808 PointsPetter Jonasson
808 PointsHelp me please. I am stuck and would love to keep on coding. //Petter 15