Kotlin ceil()

1 개요[ | ]

Kotlin ceil()
import kotlin.math.ceil
fun main(args: Array<String>) {
    val x: Double = 3.14
    val y: Double = ceil(x)
    println("x=$x, y=$y")
    // x=3.14, y=4.0
}

2 같이 보기[ | ]

3 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}