温馨提示×

# java取绝对值

Java取绝对值的方法是使用Math类中的abs()方法,例如:```int num = -5;int absNum = Math.abs(num); // absNum的值为5```

0