Java rint() 方法
rint() 方法返回最接近参数的整数值。
语法
该方法有以下几种语法格式:
double rint(double 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
版权声明:本页面内容旨在传播知识,为用户自行发布,若有侵权等问题请及时与本网联系,我们将第一时间处理。E-mail:284563525@qq.com