iT邦幫忙

2021 iThome 鐵人賽

DAY 18
0
自我挑戰組

從零開始學Java系列 第 18

Day18 Loops(Ⅴ)

  • 分享至 

  • xImage
  •  

今天再舉一個for迴圈的例子,找出1~100的偶數。
Ans:從一開始所以一開始int i=1,然後到100,所以i<=100,再來i++,找偶數代表除二餘零,最後再印出。
https://ithelp.ithome.com.tw/upload/images/20210930/20140457OahEH4Wev0.jpg
結果:
https://ithelp.ithome.com.tw/upload/images/20210930/20140457FzDAc6NBwr.jpg
Break&Continue:這兩個都是讓使執行中的程式跳出迴圈,但有點不一樣!我先大致上介紹一下兩者的差別,待會來實作比較!
Break:遇到指定的值,則直接跳出迴圈,後續迴圈都不會再執行。
Continue:遇到指定的值,跳過迴圈,後續程式會繼續執行。
先舉個簡單例子比較兩者差別:執行1~10,當遇到5的時候停止。
Break:
https://ithelp.ithome.com.tw/upload/images/20210930/20140457btGkYaLllA.jpg
結果:
https://ithelp.ithome.com.tw/upload/images/20210930/20140457RGSEgp1w6X.jpg
Continue:
https://ithelp.ithome.com.tw/upload/images/20210930/20140457ptvbQM1Yhu.jpg
結果:
https://ithelp.ithome.com.tw/upload/images/20210930/20140457IXvItpkCWv.jpg


上一篇
Day17 Loops(Ⅳ)
下一篇
Day19 Analysis of Algorithms(Ⅰ)
系列文
從零開始學Java30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言