1. 程式人生 > >JavaSE8基礎 Math.round 簡單的四舍五入成整數

JavaSE8基礎 Math.round 簡單的四舍五入成整數

true win stat light 資源 .cn ges com alt

os :windows7 x64
jdk:jdk-8u131-windows-x64
ide:Eclipse Oxygen Release (4.7.0)



code:

package jizuiku1;

public class Demo001 {
	public static void main(String[] args) {
		//Math.round 簡單的四舍五入。還有一種四舍五入是 科學計算中的四舍六入五湊偶 規則復雜。
		//在大學中進行實驗數據處理時,要用後者!
		
		System.out.println(Math.round(12.49));
		System.out.println(Math.round(12.51));
		
		System.out.println();
		
		System.out.println(Math.round(13.50));
		System.out.println(Math.round(12.50));
	}
}


result:
技術分享


Java優秀,值得學習。
學習資源:API手冊+Java源碼+清凈的心地。

JavaSE8基礎 Math.round 簡單的四舍五入成整數