程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> 關於JAVA >> Math的floor,round和ceil的總結

Math的floor,round和ceil的總結

編輯:關於JAVA

floor 返回不大於的最大整數

found 則是4捨5入的計算,入的時候是到大於它的整數

ceil 則是不小於他的最小整數

看例子

  Math.floor Math.round Math.ceil 1.4 1 1 2 1.5 1 2 2 1.6 1 2 2 -1.4 -2 -1 -1 -1.5 -2 -1 -1 -1.6 -2 -2 -1

測試程序如下:

public class MyTest {
 public static void main(String[] args) {
  double[] nums = { 1.4, 1.5, 1.6, -1.4, -1.5, -1.6 };
  for (double num : nums) {
   test(num);
  }
 }
 private static void test(double num) {
  System.out.println("Math.floor(" + num + ")=" + Math.floor(num));
  System.out.println("Math.round(" + num + ")=" + Math.round(num));
  System.out.println("Math.ceil(" + num + ")=" + Math.ceil(num));
 }
}

運行結果

Math.floor(1.4)=1.0
Math.round(1.4)=1
Math.ceil(1.4)=2.0
Math.floor(1.5)=1.0
Math.round(1.5)=2
Math.ceil(1.5)=2.0
Math.floor(1.6)=1.0
Math.round(1.6)=2
Math.ceil(1.6)=2.0
Math.floor(-1.4)=-2.0
Math.round(-1.4)=-1
Math.ceil(-1.4)=-1.0
Math.floor(-1.5)=-2.0
Math.round(-1.5)=-1
Math.ceil(-1.5)=-1.0
Math.floor(-1.6)=-2.0
Math.round(-1.6)=-2
Math.ceil(-1.6)=-1.0

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved