Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,851 questions

51,772 answers

573 users

How to use if else statements in Kotlin

2 Answers

0 votes
fun main(args: Array<String>) {
    var a = 87
    var b = 9
    
    if (a < b) {
        println("a < b")
    }
    else {
        println("a >= b")  
    }
}
 
 
 
/*
run:
 
a >= b

*/

 



answered Sep 27, 2020 by avibootz
edited Sep 27, 2020 by avibootz
0 votes
fun main(args: Array<String>) {
    var a = 87
    var b = 9
    
    if (a < b) {
        println("a < b")
    }
    else { 
        if (a > b) {
            println("a > b")  
        }
        else {
            println("a == b")  
        }
    }
}
 
 
 
/*
run:
 
a > b

*/

 



answered Sep 27, 2020 by avibootz

Related questions

2 answers 261 views
4 answers 361 views
361 views asked Feb 21, 2020 by avibootz
1 answer 193 views
1 answer 181 views
1 answer 205 views
2 answers 203 views
3 answers 89 views
89 views asked Apr 8, 2025 by avibootz
...