美文网首页编程
•计算一个数字的立方根

•计算一个数字的立方根

作者: 天黑就拉登 | 来源:发表于2020-07-04 18:05 被阅读0次

    let num = readline();

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

    console.log(n.toFixed(1))

    相关文章

      网友评论

        本文标题:•计算一个数字的立方根

        本文链接:https://www.haomeiwen.com/subject/vgzuqktx.html