Groovy - pow()


该方法返回第一个参数的第二个参数次方的值。

句法

double pow(double base, double exponent)

参数

  • base - 任何原始数据类型
  • 指数 - 任何原始数据类型

返回值

此方法返回第一个参数的第二个参数次幂的值。

例子

以下是此方法的使用示例 -

class Example {
   static void main(String[] args) {
      double x = 11.635;
      double y = 2.76; 
   
      System.out.printf("The value of e is %.4f%n", Math.E);
      System.out.printf("pow(%.3f, %.3f) is %.3f%n", x, y, Math.pow(x, y));  
   } 
}

当我们运行上面的程序时,我们将得到以下结果 -

The value of e is 2.7183 
pow(11.635, 2.760) is 874.008
groovy_numbers.htm