Skip to content

Instantly share code, notes, and snippets.

@ozcanzaferayan
Created November 12, 2018 07:30
Show Gist options
  • Select an option

  • Save ozcanzaferayan/5861c9129cc9e369588bd0783983b964 to your computer and use it in GitHub Desktop.

Select an option

Save ozcanzaferayan/5861c9129cc9e369588bd0783983b964 to your computer and use it in GitHub Desktop.
Kotlin Nedir 2: Switch-case yapısı 1
fun tekMiCiftMi(sayi: Int) : String {
return when (sayi % 2) {
0 -> "Çift"
1 -> "Tek"
else -> {
throw IllegalArgumentException()
}
}
}
fun main(args: Array<String>) {
// Çıktısı: Tek
print(tekMiCiftMi(5))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment