“Kotlin -Funktion” Code-Antworten

wie man eine Funktion in Kotlin schreibt

// 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

Kotlin -Funktion

fun main(args: Array<String>) {

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

KOTLIN Wie nennt man eine Funktion?

callme()
SAMER SAEID

Kotlin einfaches Funktionsprogramm

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

Funktion in Kotlin

kotlin function
Nasty Newt

Ähnliche Antworten wie “Kotlin -Funktion”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen