All problems
EasyControl Flow
Sum of 1 to N
Compute the sum 1 + 2 + ... + 100 using a loop. Print the total.
- #loops
- #math
Sample input
n = 100
Sample output
5050
sum-1-to-n.py
Output
Press "Run code" to execute.
Loading…
Compute the sum 1 + 2 + ... + 100 using a loop. Print the total.
n = 100
5050
Press "Run code" to execute.