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


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


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

用法

public static double floor(double a)

参数

x= a value

返回

This method returns largest floating-point value that is less than or equal 
to the argument and is equal to a mathematical integer of a double value.
  • 如果参数为正或负双精度值,此方法将返回 Floor 值。
  • 如果参数为 NaN,则此方法将返回相同的参数。
  • 如果参数为 Infinity,则此方法将返回与参数相同符号的 Infinity。

例子1

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

输出:

94.0

例子2

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

输出:

-40.0

例子3

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

输出:

0.0

示例 4

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

输出:

-Infinity






相关用法


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