gpt4 book ai didi

kotlin - 如何在 Kotlin 中计算立方根?

转载 作者:行者123 更新时间:2023-12-01 12:07:08 26 4
gpt4 key购买 nike

在 kotlin 中有一个内部 数学库而我只找到了 平方根但没有立方根。

cubic root

import kotlin.math.sqrt
import kotlin.math.pow

fun Formule(a:Int):Double{
//no working
//rs = a.pow(1/3)
//function
retun rs
}

fun main(args: Array<String>){
val calc = Formule(9)
}

最佳答案

没有必要使用 Java 库 ,只需使用 Kotlin 一:

import kotlin.math.pow

fun formula(a:Int):Double {
return a.toDouble().pow(1/3.toDouble())
}

刚刚测试了一下:
println(formula(9)) //2.080083823051904

println(formula(27)) //3.0

关于kotlin - 如何在 Kotlin 中计算立方根?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55480047/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com