Java 快速導覽 - Math 類別的 static floor()

Math 類別有 static floor() 方法 (method) ,回傳小於或等於參數 (parameter) 的最大整數值,亦即數學中的底函數

方法描述
double floor(double d)回傳小於或等於參數的最大整數值


舉例如下
class FloorDemo {
    public static void main(String[] args) {
        System.out.println(Math.floor(9.0));
        System.out.println(Math.floor(9.1));
        System.out.println(Math.floor(9.2));
        System.out.println(Math.floor(9.3));
        System.out.println(Math.floor(9.4));
        System.out.println(Math.floor(9.5));
        System.out.println(Math.floor(9.6));
        System.out.println(Math.floor(9.7));
        System.out.println(Math.floor(9.8));
        System.out.println(Math.floor(9.9));
    }
}

/* 《程式語言教學誌》的範例程式
    http://pydoing.blogspot.com/
    檔名:FloorDemo.java
    功能:示範物件導向的基本觀念 
    作者:張凱慶
    時間:西元 2010 年 10 月 */


編譯後執行,結果如下



中英文術語對照
方法method
參數parameter






沒有留言: