“Fonction kotlin” Réponses codées

Comment écrire une fonction à 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

Fonction kotlin

fun main(args: Array<String>) {

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

Kotlin comment appeler une fonction?

callme()
SAMER SAEID

Programme de fonctions simples de Kotlin

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

fonction à Kotlin

kotlin function
Nasty Newt

Réponses similaires à “Fonction kotlin”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code