CJCoding With Joseph

Alternating Sum 1 to N

Read an integer n from standard input and print the alternating sum 1 - 2 + 3 - 4 + ... up to n, with no trailing newline. Odd positions are added and even positions are subtracted. For example, if the input is 4, compute 1 - 2 + 3 - 4, so print:

-2

Use i % 2 to decide whether to add or subtract i.

Expected Output:

-2
Topics:
Loops
๐Ÿ“ฅ Auto-Input:
4
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 (p, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.