•计算一个数字的立方根


let num = readline();

let n = Math.pow(num,1/3);

console.log(n.toFixed(1))

你可能感兴趣的:(•计算一个数字的立方根)