โ Back to If Statements
Question 368
Absolute Value by Hand
Absolute Value by Hand
Read an integernfrom input. Print its absolute value (its distance from zero) WITHOUT using theabsfunction. Ifnis negative, print-n; otherwise printn. For example, given the input-5, the program prints: 5 End the line with a newline.
Expected Output:
5
Topics:
If Statements
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.