发布网友 发布时间:2022-08-17 20:23
共1个回答
热心网友 时间:2023-10-13 23:59
就是四舍五入!‘
public class MathTest {
public static void main(String[] args) {
System.out.println(小数点后第一位=5);
System.out.println(正数:Math.round(11.5)= + Math.round(11.5));
System.out.println(负数:Math.round(-11.5)= + Math.round(-11.5));
System.out.println();
System.out.println(小数点后第一位<5);
System.out.println(正数:Math.round(11.46)= + Math.round(11.46));
System.out.println(负数:Math.round(-11.46)= + Math.round(-11.46));
System.out.println();
System.out.println(小数点后第一位>5);
System.out.println(正数:Math.round(11.68)= + Math.round(11.68));
System.out.println(负数:Math.round(-11.68)= + Math.round(-11.68));
}
}