โ Back to Loops
Question 332
Sum of Odd Numbers up to N
Sum of Odd Numbers up to N
Read an integerNfrom input. Use a loop to add every odd number from 1 up to and includingN, and print the total followed by a newline. For input7the exact output is: 16
Expected Output:
16
Topics:
Loops
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.