java.lang.StrictMath.pow()方法實例
java.lang.StrictMath.pow() 方法返回第一個參數提高到第二個參數的冪值。它包括以下情況:
- 如果第二個參數為正或負零,則返回1.0。
- 如果第二個參數是1.0,返回與第一個參數相同的值。
- 如果第二個參數為NaN,返回NaN。
- 如果第一個參數為NaN,第二個參數是非零,返回NaN。
聲明
以下是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