當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。