当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Math.ceil()用法及代码示例


java.lang.Math.ceil() 用于查找大于或等于参数或数学整数的最小整数值。

用法

public static double ceil(double x)

参数

x= a value

返回

This method returns smallest floating-point value that is greater than or equal to the 
argument and is equal to a mathematical integer.
  • 如果参数为正或负双精度值,此方法将返回 ceil 值。
  • 如果参数为 NaN,则此方法将返回相同的参数。
  • 如果参数是 Infinity,则此方法将返回与参数相同符号的 Infinity。
  • 如果参数是正零或负零,此方法将返回与参数相同符号的零。
  • 如果参数小于零但大于 -1.0,则此方法将返回负零作为输出。

例子1

public class CeilExample1
{
    public static void main(String[] args) 
    {
        double x = 83.56;
        // Input positive value, Output ceil value of x 
        System.out.println(Math.ceil(x));
    }
}

输出:

84.0

例子2

public class CeilExample2
{
    public static void main(String[] args) 
    {
        double x = -94.73;
        // Input negative value, Output ceil value of x
        System.out.println(Math.ceil(x));
    }
}

输出:

-94.0

例子3

public class CeilExample3
{
    public static void main(String[] args) 
    {
        double x = -1.0 / 0;
        // Input negative infinity, Output negative infinity
        System.out.println(Math.ceil(x));
    }
}

输出:

-Infinity

示例 4

public class CeilExample4
{
    public static void main(String[] args) 
    {
        double x = 0.0;
        // Input positive zero, Output positive zero
        System.out.println(Math.ceil(x));
    }
}

输出:

0.0

例 5

public class CeilExample5
{
    public static void main(String[] args) 
    {
        double x = -0.25;
        // Input less than zero but greater than -1.0, Output negative zero
        System.out.println(Math.ceil(x));
    }
}

输出:

-0.0






相关用法


注:本文由纯净天空筛选整理自 Java Math.ceil() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。