CJCoding With Joseph

Sum of Even Numbers up to N

Read a positive integer n from input and print the sum of all even numbers from 1 to n inclusive. For example, if the input is:

10

print:

30

(2 + 4 + 6 + 8 + 10 = 30). Use a loop and check each number with % 2.

Expected Output:

30
Topics:
User Input
๐Ÿ“ฅ Auto-Input:
10
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.