โ Back to User Input
Question 361
Sum of Even Numbers up to N
Sum of Even Numbers up to N
Read a positive integernfrom input and print the sum of all even numbers from 1 toninclusive. 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
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.