2019年5月21日 星期二

Kotlin學習筆記(21) 使用while迴圈

Kotlin學習筆記(21)  使用while迴圈

fun main() {
    val items = listOf("apple", "banana", "kiwifruit")
    var index = 0
    while (index < items.size) {
        println("item at $index is ${items[index]}")
        index++
    }
   
    index=1
    var sum = 0
    while (index < 100) {
        sum=sum+index
        index+=2
    }
    println("1+3+5+....99= ?")
    println("the sum is  $sum")
   
}


輸出畫面
item at 0 is apple item at 1 is banana item at 2 is kiwifruit
1+3+5+....99= ? the sum is 2500


沒有留言:

張貼留言

Messaging API作為替代方案

  LINE超好用功能要沒了!LINE Notify明年3月底終止服務,有什麼替代方案? LINE Notify將於2025年3月31日結束服務,官方建議改用Messaging API作為替代方案。 //CHANNEL_ACCESS_TOKEN = 'Messaging ...