Files
Java/src/main/java/com/thealgorithms/maths/AbsoluteValue.java
2026-02-13 10:43:27 +01:00

17 lines
371 B
Java

package com.thealgorithms.maths;
public final class AbsoluteValue {
private AbsoluteValue() {
}
/**
* Returns the absolute value of a number.
*
* @param number The number to be transformed
* @return The absolute value of the {@code number}
*/
public static int getAbsValue(int number) {
return Math.abs(number);
}
}