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


Java StrictMath floor()用法及代码示例


java.lang.StrictMath.floor()是内置方法,该方法返回最大的double值,该值小于或等于给定的参数,并且等于整数值。

  • 当给定参数等于整数时,结果与参数相同。
  • 当给定参数为NaN,无穷大,正零或负零时,结果与参数相同。

用法:

public static double floor(double num)

参数:此方法接受一个double类型的参数num。


返回值:该方法返回最接近正无穷大,小于或等于自变量且等于整数的最大值。

例子:

Input: num = 9.6
Output: 9.0

Input: num = -7.8
Output: -8.0

下面的程序演示了java.lang.StrictMath.floor()方法:
示例1:

// Java praogram to illustrate the 
//java.lang.StrictMath.floor() 
  
import java.lang.*; 
  
public class Geeks { 
  
public static void main(String[] args) { 
  
    double num1 = 7.8, num2 = 1.4 ; 
  
    double fValue = StrictMath.floor(num1);  
    System.out.println("The floor value of "+ 
                             num1+" = " + fValue); 
  
    fValue = StrictMath.floor(num2);  
    System.out.println("The floor value of "+ 
                             num2+" = " + fValue); 
} 
}
输出:
The floor value of 7.8 = 7.0
The floor value of 1.4 = 1.0

程序2:

// Java praogram to illustrate the 
//java.lang.StrictMath.floor() 
  
import java.lang.*; 
  
public class Geeks { 
  
public static void main(String[] args) { 
  
    double num1 = -7.8, num2 = -1.4 ,num3 = 0.1 ; 
  
    double fValue = StrictMath.floor(num1);  
    System.out.println("The floor value of "+ 
                             num1+" = " + fValue); 
  
    fValue = StrictMath.floor(num2);  
    System.out.println("The floor value of "+ 
                             num2+" = " + fValue); 
  
    fValue = StrictMath.floor(num3);  
    System.out.println("The floor value of "+ 
                             num3+" = " + fValue); 
  
} 
}
输出:
The floor value of -7.8 = -8.0
The floor value of -1.4 = -2.0
The floor value of 0.1 = 0.0


相关用法


注:本文由纯净天空筛选整理自ankita_chowrasia大神的英文原创作品 StrictMath floor() Method in Java。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。