โ Back to Loops
Question 221
Alternating Sum 1 to N
Alternating Sum 1 to N
Read an integernfrom standard input and print the alternating sum1 - 2 + 3 - 4 + ...up ton, with no trailing newline. Odd positions are added and even positions are subtracted. For example, if the input is4, compute1 - 2 + 3 - 4, so print: -2 Usei % 2to decide whether to add or subtracti.
Expected Output:
-2
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.