- 1. Eingabe, Druck und Zahlen
- 2. Ganzzahl und Gleitzahl
- 3. Bedingungen: Wenn-dann-sonst
- 4. Für Schleife mit Bereich
- 5. Saiten
- 6. While-Schleife
- 7. Listen
- 8. Funktionen und Rekursion
- 9. Zweidimensionale Listen (Arrays)
- 10. Sätze
- 11. Wörterbücher
- 12. JavaScript
- 13. HTML5 and CSS
- 14. Responsive Design with Bootstrap
- 15. jQuery
Ad place
Lesson 4. For loop with range
1/12. Loops? Why do I need them?
Quite often programs need to repeat some block several times. That's where loops come in handy. To sum first5
numbers, for sure you
can write something like what you see in the code section.
Instructions
Click "Run" to see what happens in output!
But it is inconvenient. Imagine you had to sum the first 100 numbers, or do another bunch of similar calculations. You surely wouldn't write the 100 lines!
[*]
ⓘ
Goto line
X
Great news: from now on you can use Java to solve any problem on our website. Just select "Java" and start coding. Use any input-output functions you want from java.io; Let us know what do you think by sending feedback to: cxielamiko@gmail.com (Vitaly)
123456789101112sum = 0sum = sum + 1sum = sum + 2sum = sum + 3sum = sum + 4sum = sum + 5print(sum)XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
Input:
1XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
Output:
1XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
Stack grows