在Java中,可以使用Math類中的log方法和pow方法來進行數學運算。log方法用于計算一個數的自然對數,即以e為底的對數,而pow方法用于計算一個數的指數冪。
例子:
double x = 10;
double result1 = Math.log(x); // 計算10的自然對數
double result2 = Math.pow(2, 3); // 計算2的3次方
System.out.println("log(10) = " + result1);
System.out.println("2^3 = " + result2);
這段代碼中,先使用Math.log方法計算了10的自然對數,并將結果賦給result1,然后使用Math.pow方法計算了2的3次方,并將結果賦給result2。最后輸出了計算結果。