Java rint() 方法

rint() 方法返回最接近参数的整数值。

语法

该方法有以下几种语法格式:

  1. double rint(double d)

参数

  • double 原始数据类型。

返回值

返回 double 类型数组,是最接近参数的整数值。

实例

  1. public class Test{
  2. public static void main(String args[]){
  3. double d = 100.675;
  4. double e = 100.500;
  5. double f = 100.200;
  6. System.out.println(Math.rint(d));
  7. System.out.println(Math.rint(e));
  8. System.out.println(Math.rint(f));
  9. }
  10. }

编译以上程序,输出结果为:

  1. 101.0
  2. 100.0
  3. 100.0