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 trial
GamingWithHan :)
Java Web Development Techdegree Student 1,966 PointsExplanation of For Loop
Hello fellow peers and teachers, Could you help me explain this for loop?
double p = 0;
for (int m = 10; m > 6; --m) {
if (m == 7) {
p += m;
}
else {
++p;
}
}
1 Answer
Steven Parker
243,266 PointsThis is a rather funny little bit of code:
double p = 0;
for (int m = 10; m > 6; --m) { // starting with 10, count down while m > 6
if (m == 7) {
p += m; // if m is 7, add it to p
}
else {
++p; // otherwise just add 1 to p
}
}
The funniest part is that you can replace the whole thing with just this:
double p = 10;
Where did you see this?
Steven Parker
243,266 PointsSteven Parker
243,266 PointsOh, and to make your posted code look like these samples, use the instructions for code formatting in the Markdown Cheatsheet pop-up below the "Add an Answer" area.
Or watch this video on code formatting.