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 trialAndres Aguilera
589 PointsHow do I start?
Beginner in Java... I've been staring at this problem for a while now and can't seem to figure it out. I've re-watched the video multiple times and can't seem to grasp the 'loop'. How would you start it, or do it, and why? Thanks in advance.
1 Answer
qlpxjevhuv
10,503 PointsYou'll want to begin by moving the "prompting code" into a do {...} while (...) loop. The syntax is:
do {
statement(s)
} while (expression);
The reason for this exercise is to practice using loops. Also, remember to adjust your code to what the hint recommends.