Java exp() 方法
exp() 方法用來傳回自然數底數e的參數次方。
文法
此方法有以下幾種語法格式:
double exp(double d)
參數
d -- 任何原生資料型態。
傳回值
傳回自然數底數e的參數次方。
實例
public class Test{ public static void main(String args[]){ double x = 11.635; double y = 2.76; System.out.printf("e 的值为 %.4f%n", Math.E); System.out.printf("exp(%.3f) 为 %.3f%n", x, Math.exp(x)); } }
編譯以上程序,輸出結果為:
e 的值为 2.7183 exp(11.635) 为 112983.831