Board logo

標題: continue, break, return (一) [打印本頁]

作者: tonyh    時間: 2019-8-5 15:34     標題: continue, break, return (一)

continue 語法能強制程序立即跳入下一輪迴圈.
  1. public class Ch26
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         for(int i=1; i<=10; i++)
  6.         {
  7.              if(i%2==0)
  8.                  continue;
  9.              System.out.println(i);
  10.         }
  11.     }
  12. }
複製代碼

作者: 蔡明蓉    時間: 2019-8-5 15:56

  1. public class Ch26
  2. {
  3.         public static void main(String args[])
  4.         {
  5.                 for(int i=1;i<=10;i+=1)
  6.                 {
  7.                         if(i%2==0)
  8.                                 continue;
  9.                         System.out.println(i);
  10.                 }               
  11.         }
  12. }
複製代碼

作者: 許育慈    時間: 2019-8-5 15:56

  1. public class Ch11{
  2.     public static void main(String args[]){
  3.         for(int i=1; i<=10; i++){
  4.              if(i%2==0){
  5.                  continue;
  6.              }
  7.              System.out.println(i);
  8.         }
  9.     }
  10. }
複製代碼

作者: 曾暘竣    時間: 2019-8-5 15:57

  1. public class Ch10
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         for(int i=1; i<=10; i++)
  6.         {
  7.              if(i%2==0)
  8.                  continue;
  9.              System.out.println(i);
  10.         }
  11.     }
  12. }
複製代碼

作者: 潘憶承    時間: 2019-8-5 15:57

  1. public class Ch08
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         for(int i=1; i<=10; i++)
  6.         {
  7.              if(i%2==0)
  8.                  continue;
  9.              System.out.println(i);
  10.         }
  11.     }
  12. }
複製代碼

作者: 張郁庭    時間: 2019-8-5 15:57

  1. public class Ch01
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         for(int i=1; i<=10; i++)
  6.         {
  7.                 if(i%2==0)
  8.                     continue;
  9.                 System.out.println(i);
  10.         }
  11.     }
  12. }
複製代碼

作者: 莊鈞程    時間: 2019-8-5 15:57

  1. public class Ch23{
  2.     public static void main(String args[]){
  3.          for(int i=1;i<=10;i++){
  4.                  if(i%2==0)
  5.                          continue;
  6.                  System.out.println(i);
  7.          }
  8.     }
  9. }
複製代碼

作者: 黃永恩    時間: 2019-8-5 15:57

  1. public class Ch26
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         for(int i=1; i<=10; i++)
  6.         {
  7.              if(i%2==0)
  8.                  continue;
  9.              System.out.println(i);
  10.         }
  11.     }
  12. }
複製代碼

作者: 余奕廷    時間: 2019-8-5 15:57

  1. public class Ch01
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         for(int i=1; i<=10; i++)
  6.         {
  7.              if(i%2==0)
  8.                  continue;
  9.              System.out.println(i);
  10.         }
  11.     }
  12. }
複製代碼

作者: 余映均    時間: 2019-8-5 16:03

  1. public class Ch26
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         for(int i=1; i<=10; i++)
  6.         {
  7.              if(i%2==0)
  8.                  continue;
  9.              System.out.println(i);
  10.         }
  11.     }
  12. }
複製代碼

作者: 鄭宇崴    時間: 2019-8-5 16:03

  1. public class Ch26
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         for(int i=1; i<=10; i++)
  6.         {
  7.              if(i%2==0)
  8.                  continue;
  9.              System.out.println(i);
  10.         }
  11.     }
  12. }
複製代碼

作者: 許育禎    時間: 2019-8-5 16:03

  1. public class Ch26
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         for(int i=1; i<=10; i++)
  6.         {
  7.              if(i%2==0)
  8.                  continue;
  9.              System.out.println(i);
  10.         }
  11.     }
  12. }
複製代碼

作者: 張書涵    時間: 2019-8-5 16:04

  1. public class Ch01{
  2.     public static void main(String args[])
  3.     {
  4.          for(int i=1; i<=10; i++)
  5.          {
  6.                  if(i%2==0)
  7.                          continue;
  8.                  System.out.println(i);
  9.          }
  10.     }
  11. }
複製代碼

作者: 何育翔    時間: 2019-8-5 20:36

  1. public class Ch20 {

  2.         public static void main(String[] args) {
  3.                 {
  4.                         for(int i=1;i<=10;i++)
  5.                         {
  6.                                 if(i%2==0)
  7.                                         continue;
  8.                                 System.out.println(i);
  9.                                
  10.                         }
  11.                        
  12.                
  13.                
  14.                
  15.                 }
  16.                

  17.         }

  18. }
複製代碼

作者: 葉俠愷    時間: 2019-8-6 09:03

  1. public class Ch26
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         for(int i=1; i<=10; i++)
  6.         {
  7.              if(i%2==0)
  8.                  continue;
  9.              System.out.println(i);
  10.         }
  11.     }
  12. }
複製代碼

作者: 黃芊嬡    時間: 2019-8-6 09:19

  1. public class Ch26
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         for(int i=1; i<=10; i++)
  6.         {
  7.              if(i%2==0)
  8.                  continue;
  9.              System.out.println(i);
  10.         }
  11.     }
  12. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2