👮♂️Koşullar
🎆 IF Yapısı
if (index = 0){
println("0")
index++
}
else if (index = 1) {
println("1")
}
else if (index = 1) {
println("2")
}
else if (index = 1) {
println("3")
}
else {
println("İndex değeri bulunamadı")
}🎇 When Yapısı (Switch)
👮♂️ Koşul Kullanımları
Last updated
Was this helpful?