Java rint()方法
描述:
该rint 方法返回最接近参数的整数值。
语法
double rint(double d)
参数
下面是参数的详细信息:
-
d -- double 原始数据类型
返回值
-
此方法返回的是最接近参数的整数值。返回为double。
例子:
public class Test{ 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