【038】continue, break, return (一)
本帖最後由 tonyh 於 2023-3-15 16:27 編輯
continue 語法能強制程序立即跳入下一輪迴圈.- public class Ch26
- {
- public static void main(String args[])
- {
- for(int i=1; i<=10; i++)
- {
- if(i%2==0)
- continue;
- System.out.println(i);
- }
- }
- }
複製代碼- public class Ch22{
- public static void main(String args[])
- {
- for(int j=1; j<=3; j++)
- {
- for(int i=1; i<=10; i++)
- {
- if(i%2==0)
- continue;
- System.out.println(i);
- }
- }
- }
- }
複製代碼 |