扫码一下
查看教程更方便
pow() 方法返回第一个参数的第二个参数的幂的值。
double pow(double base, double exponent)
此方法返回第一个参数的第二个参数的幂的值。c
public class Main { 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