Kotlin when
val x = 3
when(x) {
    3 -> println("yes")
    8 -> println("no")
    else -> println("maybe")
}
// when can also be used as an expression!
val y = when(x) {
    3 -> "yes"
    8 -> "no"
    else -> "maybe"
}
println(y) // "yes"Kotlin when
val x = 3
when(x) {
    3 -> println("yes")
    8 -> println("no")
    else -> println("maybe")
}
// when can also be used as an expression!
val y = when(x) {
    3 -> "yes"
    8 -> "no"
    else -> "maybe"
}
println(y) // "yes"when kotlin
when (x) {
    1 -> print("x == 1")
    2 -> print("x == 2")
    else -> { // Note the block
        print("x is neither 1 nor 2")
    }
}kotlin when
fun numberTypeName(x: Number) = when(x) {
 0 -> "Zero" // Equality check
 in 1..4 -> "Four or less" // Range check
 5, 6, 7 -> "Five to seven" // Multiple values
 is Byte -> "Byte" // Type check
 else -> "Some number"
}kotlin when
fun signAsString(x: Int)= when {
 x < 0 -> "Negative"
 x == 0 -> "Zero"
 else -> "Positive"
}when kotlin
#include<bits/stdc++.h>
using namespace std;
int main()
{
  cout<<"HEllo";
}when kotlin
var greeting : String ? = null
fun main(){
	when(greeting){
		null -> println("Hi")
        else -> println(greeting)
        }
   }Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us
