“Funkcja w Kotlin” Kod odpowiedzi

Jak napisać funkcję w 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

Funkcja Kotlin

fun main(args: Array<String>) {

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

Funkcja w Kotlin

kotlin function
Nasty Newt

Odpowiedzi podobne do “Funkcja w Kotlin”

Pytania podobne do “Funkcja w Kotlin”

Więcej pokrewnych odpowiedzi na “Funkcja w Kotlin” w Kotlin

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu