Math.pow()实现开任意次方根

Math.pow(x,1/y)表示对x开y次方根,比如Math.pow(x,1/2)是求x的平方根,相当于Math.sqrt(x)

原文地址:https://www.cnblogs.com/qdog/p/7026974.html