Java pow() 方法

pow() 方法用于返回第一个参数的第二个参数次方。

语法

  1. double pow(double base, double exponent)

参数

  • base — 任何原生数据类型。

  • exponent — 任何原生数据类型。

返回值

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

实例

  1. public class Test{
  2. public static void main(String args[]){
  3. double x = 11.635;
  4. double y = 2.76;
  5. System.out.printf("e 的值为 %.4f%n", Math.E);
  6. System.out.printf("pow(%.3f, %.3f) 为 %.3f%n", x, y, Math.pow(x, y));
  7. }
  8. }

编译以上程序,输出结果为:

  1. e 的值为 2.7183
  2. pow(11.635, 2.760) 874.008