Math.pow(double a, double b)可以使用static方法将中指定的值提高到中指定a的幂b。
package org.nhooo.example.math; public class PowerExample { public static void main(String[] args) { double cubeRoot = 5d; // 获取立方根的立方数 // x立方= x ^ 3(相乘三倍) double cubed = Math.pow(cubeRoot, 3); System.out.println(cubeRoot + " cubed is " + cubed); } }
我们的程序输出以下输出:
5.0 cubed is 125.0