โ Back to Loops
Question 25
For Loop: Sum 1 to 10
For Loop: Sum 1 to 10
Use a for loop to add the numbers 1 through 10, then print the final sum. Expected output: Sum: 55 Steps: 1. Create a variable sum and set it to 0 2. Use a for loop from 1 to 10 3. Add each number to sum 4. Print "Sum: " followed by sum
Expected Output:
Sum: 55
Topics:
Loops
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (clog, fn, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.