CJCoding With Joseph

Absolute Value by Hand

Read an integer n from input. Print its absolute value (its distance from zero) WITHOUT using the abs function. If n is negative, print -n; otherwise print n.

For example, given the input -5, the program prints:

5

End the line with a newline.

Expected Output:

5
Topics:
If Statements
๐Ÿ“ฅ Auto-Input:
-5
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.