扫码一下
查看教程更方便
rint() 方法返回最接近参数的整数值。
double rint(double d)
d - 它接受双精度值作为参数。
此方法返回值最接近参数的整数。 作为 double 返回。
public class Main { public static void main(String args[]) { double d = 100.675; double e = 100.500; double f = 100.200; System.out.println(Math.rint(d)); System.out.println(Math.rint(e)); System.out.println(Math.rint(f)); } }
上面示例编译运行结果如下
101.0
100.0
100.0