CJCoding With Joseph

Sum of Odd Numbers up to N

Read an integer N from input. Use a loop to add every odd number from 1 up to and including N, and print the total followed by a newline. For input 7 the exact output is:

16

Expected Output:

16
Topics:
Loops
๐Ÿ“ฅ Auto-Input:
7\n
This input is automatically fed to your program's stdin
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.