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 trialBernadine Louis Pierre
1,190 PointsHow to continually prompt the user in a do-while loop.
Its giving me so much errors
1 Answer
Andrew Stevens
11,083 PointsAs Steven Parker has mentioned it is hard to know what part of the challenge you are stuck on without your code. However, the first part the hint is in the comment, maybe refer to the Java docs regarding Java.io.Console.
Also remember you want to execute the program repeatedly until the specified condition is true, think about how you access the variable you created hopefully that points you in the right direction.
do {
// Your code to run goes here.
}
while (// condition to be checked);
Another thing to consider is how you compare a String will == do the job or do you need to think about something else?
Steven Parker
231,184 PointsSteven Parker
231,184 PointsYou'll need to share your code to make it possible for us to help. Take a look at this video about Posting a Question. And for when your question refers to something you are doing in a workspace, you may also want to view this one about sharing a snapshot of your workspace.