Java Math.pow()
方法返回第一個引數的第二個引數次方值。
語法
double pow(double base, double exponent)
base
- 作為底數,它是任何原始資料型別。exponenet
- 作為指數,它是任何原始資料型別。
public class Test {
public static void main(String args[]) {
double x = 11.635;
double y = 2.76;
System.out.printf("The value of e is %.4f%n", Math.E);
System.out.printf("pow(%.3f, %.3f) is %.3f%n", x, y, Math.pow(x, y));
System.out.printf("pow(%d, %d) is %f%n ", 2, 3, Math.pow(2, 3));
//System.out.println(Math.pow(2, 3));
}
}
執行上面範例程式碼,得到以下結果:
The value of e is 2.7183
pow(11.635, 2.760) is 874.008
pow(2, 3) is 8.000000