CJCoding With Joseph

Sum of Odd Numbers 1 to 9

Use a loop to add the odd numbers 1, 3, 5, 7, and 9, then print their sum with no trailing newline:

25

Start a total at 0, step through the odds with a loop, and do not hardcode 25.

Expected Output:

25
Topics:
Loops
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (p, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.