CJCoding With Joseph

Sign Method

Write the static method Sign so it returns 1 when its parameter is positive, -1 when it is negative, and 0 when it is zero. The tester calls it and prints the result. Do NOT write a Main method.

For Sign(42) the program prints exactly:
1

Expected Output:

1
Topics:
Methods
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cw, cr, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.