作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 kotlin 中有一个内部 数学库而我只找到了 平方根但没有立方根。
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/
我是一名优秀的程序员,十分优秀!