标签: java
想知道代表x^(1/3)的正确方法是什么?这是我的代码,它为2返回正确值8^(1/3)。想知道是否还有其他更好的方法?
x^(1/3)
2
8^(1/3)
int a = 8; System.out.println(Math.pow(8, 1/3.0)); // returns 2
的问候, 林
答案 0 :(得分:6)
x 1/3 有Math.cbrt method。
Math.cbrt
System.out.println(Math.cbrt(8));
另见: