Is there any way to find the absolute value of a number without using the Math.abs() method in java.
Like this:
if (number < 0) { number *= -1; }