Question: Write a static method signum() that takes an int argument n and returns -1 if n is less than 0, 0 if n is equal
Write a static method signum() that takes an int argument n and returns -1 if n is less than 0, 0 if n is equal to 0, and +1 if n is greater than 0.
Step by Step Solution
3.39 Rating (158 Votes )
There are 3 Steps involved in it
In Java you could write the signum function like this java public static i... View full answer
Get step-by-step solutions from verified subject matter experts
