在Java中,可以使用Math.pow()
方法來計算冪函數的值,Math.pow()
方法接受兩個參數,第一個參數是底數,第二個參數是指數,返回底數的指數次方的結果。
以下是一個示例代碼,演示如何使用冪函數解決實際問題:
public class Main {
public static void main(String[] args) {
// 計算2的3次方
double result = Math.pow(2, 3);
System.out.println("2的3次方是:" + result);
// 計算3的4次方
result = Math.pow(3, 4);
System.out.println("3的4次方是:" + result);
// 計算5的2次方
result = Math.pow(5, 2);
System.out.println("5的2次方是:" + result);
}
}
在上面的示例中,我們使用Math.pow()
方法來計算不同底數和指數的冪函數值,并將結果打印出來。通過這種方式,我們可以輕松地使用冪函數來解決實際問題。