CJCoding With Joseph

Absolute Value

Write a function int absVal(int n) that returns the absolute value of n (its distance from zero, always non-negative) WITHOUT using the library abs function.

For absVal(-7) the program prints 7.

Expected Output:

7
Topics:
Functions
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.