使用 Math.pow 在 Java 中获取幂
为了在 Java 中获取一个数字的幂,我们使用 java.lang.Math.pow() 方法。Math.pow(double a, double b) 方法接受两个 double 数据类型的参数,并返回一个值,该值是第一个参数乘以第二个参数的幂所得。
声明 - java.lang.Math.pow() 方法声明如下 −
public static double pow(double a, double b)
其中 a 是底数,而 b 是底数的幂。
我们来看一个程序,其中我们使用 Math.pow() 方法查找一个数字的幂。
示例
import java.lang.Math; public class Example { public static void main(String[] args) { // declaring and initializing some double values double x = 5.0; double y = 3.0; // computing the powers System.out.println( x + " raised to the power of " + y + " is " + Math.pow(x,y)); System.out.println( y + " raised to the power of " + x + " is " + Math.pow(y,x)); } }
输出
5.0 raised to the power of 3.0 is 125.0 3.0 raised to the power of 5.0 is 243.0
广告