Java pow()方法
描述:
该方法返回第一个参数的第二个参数次幂的值。
语法
double pow(double base, double exponent)
参数
下面是参数的详细信息:
-
base -- 原始数据类型
-
exponenet -- 原始数据类型
返回值
-
方法返回第一个参数的第二个参数次幂的值。
例子:
public class Test{ public 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