“Fungsi Kotlin” Kode Jawaban

Cara Menulis Fungsi di Kotlin

// Use 'fun' keyword to declare function
// 'num' is the parameter and is of type Int
// The ':Int' indicates the return type
fun square(num: Int):Int {
    return num * num
}
Noob_Code

Fungsi Kotlin

fun main(args: Array<String>) {

    var number = 5.5
    print("Result = ${Math.sqrt(number)}")
}
SAMER SAEID

Kotlin Bagaimana cara memanggil fungsi?

callme()
SAMER SAEID

Kotlin Program Fungsi Sederhana

fun callMe() {
    println("Printing from callMe() function.")
    println("This is cool (still printing from inside).")
}

fun main(args: Array<String>) {
    callMe()
    println("Printing outside from callMe() function.")
}
SAMER SAEID

Fungsi di Kotlin

kotlin function
Nasty Newt

Jawaban yang mirip dengan “Fungsi Kotlin”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya