java.lang.StrictMath.pow() 方法返回第一個引數提高到第二個引數的冪值。它包括以下情況:
以下是java.lang.StrictMath.pow()方法的宣告
public static double pow(double a, double b)
a -- 這是基數
b -- 這是指數值。
此方法返回 ab 的值.
NA
下面的例子顯示java.lang.StrictMath.pow()方法的使用。
package com.yiibai; import java.lang.*; public class StrictMathDemo { public static void main(String[] args) { double d1 = 4.5 , d2 = 6.9, d3 = 1; // returns d1 to the power d2 double powValue = StrictMath.pow(d1 , d2); System.out.println(""+ d1 + " to the power of " + d2 + " = " + powValue); // returns d1 to the power d3 powValue = StrictMath.pow(d1 , d3); System.out.println(""+ d1 + " to the power of " + d3 + " = " + powValue); } }
讓我們來編譯和執行上面的程式,這將產生以下結果:
4.5 to the power of 6.9 = 32148.916823357664 4.5 to the power of 1.0 = 4.5