当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Math pow()用法及代码示例


java.lang.Math.pow()用于计算增加到其他数字幂的数字。该函数接受两个参数,并将第一个参数的值返回到第二个参数。下面列出了一些特殊情况:

  • 如果第二个参数为正或负零,则结果将为1.0。
  • 如果第二个参数是1.0,则结果将与第一个参数的结果相同。
  • 如果第二个参数是NaN,那么结果也将是NaN。

用法

public static double pow(double a, double b)
Parameter:
a : this parameter is the base
b : this parameter is the exponent.
Return :
This method returns ab.

例子1:显示java.lang.Math.pow()方法的用法。


// Java program to demonstrate working 
// of java.lang.Math.pow() method 
  
import java.lang.Math; 
  
class Gfg { 
  
    // driver code 
    public static void main(String args[]) 
    { 
        double a = 30; 
        double b = 2; 
        System.out.println(Math.pow(a, b)); 
  
        a = 3; 
        b = 4; 
        System.out.println(Math.pow(a, b)); 
  
        a = 2; 
        b = 6; 
        System.out.println(Math.pow(a, b)); 
    } 
}

输出:

900.0
81.0
64.0

例子2:当参数为NaN时,显示java.lang.Math.pow()方法的用法。

// Java program to demonstrate working 
// of java.lang.Math.pow() method 
import java.lang.Math; // importing java.lang package 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        double nan = Double.NaN; 
        double result; 
  
        // Here second argument is NaN, 
        // output will be NaN 
        result = Math.pow(2, nan); 
        System.out.println(result); 
  
        // Here second argument is zero 
        result = Math.pow(1254, 0); 
        System.out.println(result); 
  
        // Here second argument is one 
        result = Math.pow(5, 1); 
        System.out.println(result); 
    } 
}

输出:

NaN
1.0
5.0


相关用法


注:本文由纯净天空筛选整理自barykrg大神的英文原创作品 Math pow() method in Java with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。