Answers for "identification of negative and positive number and make it negative"

0

identification of negative and positive number and make it negative

public class Kata {

  public static int makeNegative(final int x) {
   return -Math.abs(x);
  }
  
}
Posted by: Guest on June-10-2021

Code answers related to "identification of negative and positive number and make it negative"

Browse Popular Code Answers by Language