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 -- 這是指數值。

返回值

此方法返回 a的值.

異常

  • 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