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


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