1. 程式人生 > >JavaSE8基礎 Math PI E 圓周率與自然常數

JavaSE8基礎 Math PI E 圓周率與自然常數

int div public 圓周率 windows7 release string stat clas

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


code:

package jizuiku1;

public class Demo000 {
	public static void main(String[] args) {
		//圓周率 π
		System.out.println(Math.PI);
		
		//自然對數 e
		System.out.println(Math.E);
	}
}


result:
技術分享


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

JavaSE8基礎 Math PI E 圓周率與自然常數