Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

If-Else

fun main(args: Array<String>) {
    val a:Int = 5
    val b:Int = 2
    var max: Int
    
    if(a>b){
        max =a
    }else{
        max = b
    }
    print("Maximun of a or b is "+ max)
}

Advertisements
Loading...

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.