Java ceil() 方法

ceil() 方法可对一个数进行上舍入,返回值大于或等于给定的参数,类型为双精度浮点型。

语法

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

  1. double ceil(double d)
  2. double ceil(float f)

参数

  • double 或 float 的原生数据类型。

返回值

返回 double 类型,返回值大于或等于给定的参数。

实例

  1. public class Test{
  2. public static void main(String args[]){
  3. double d = 100.675;
  4. float f = -90;
  5. System.out.println(Math.ceil(d));
  6. System.out.println(Math.ceil(f));
  7. System.out.println(Math.floor(d));
  8. System.out.println(Math.floor(f));
  9. }
  10. }

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

  1. 101.0
  2. -90.0
  3. 100.0
  4. -90.0