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 trialAlexander Huamani
2,091 PointsTask 2 of 3, very hard
i do not understand the question or the command .
// I have initialized a java.io.Console for you. It is in a variable named console.
String response=console.readLine("Do you understand do while loops ");
if (response.equalsIgnoreCase("yes"));
System.exit(0)
2 Answers
Dan Hedgecock
13,807 PointsInstead of just answering how to pass, here are some hints on what you need to make this work. This question requires a combination of Strings, Booleans and the Do While Loop.
You need two variables, one for the response from the command line and one for the boolean value of if they understand (because the if() needs to check a boolean value, not a string.)
You'll need to then open your do while loop.
Then you'll need to get the response from readLine and set the value of your boolean based on if that response.equals()
Then you will use the value of the boolean in the while() of the do while block.
Hope these hints help!
Alexander Huamani
2,091 PointsThanks but i just recently finished it, hahah