📜  在java代码示例中打印数字的立方根

📅  最后修改于: 2022-03-11 14:52:39.148000             🧑  作者: Mango

代码示例1
// Find the cube root of given input(double) 

        double x = 27;
        
        double result = java.lang.Math.cbrt(x);
       
        System.out.println(result);