Board logo

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

作者: tonyh    時間: 2019-7-3 15:37     標題: 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-7-3 15:44

  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-7-3 15:44

  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-7-3 15:45

  1. public class Ch14
  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-7-3 15:45

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

作者: 古蕾娜    時間: 2019-7-3 15:45

  1. public class Ch03{
  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-7-3 15:45

  1. public class ch02
  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. }
複製代碼
回復 1# tonyh
作者: 陳致翰    時間: 2019-7-3 15:45

  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. }
  13.   
複製代碼

作者: 蔡杰恩    時間: 2019-7-3 15:45

  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.    
  12. }
複製代碼

作者: 陳柏銓    時間: 2019-7-3 15:46

  1. public class Ch0035 {

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

  9.         }

  10. }
複製代碼

作者: 林宥杰    時間: 2019-7-3 15:46

  1. public class Ch01 {

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

作者: 吳庭慈    時間: 2019-7-3 15:46

  1. public class Ch25
  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-7-3 15:47

  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-7-3 15:47

  1. public class Ch14
  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-7-3 15:47

  1. public class Ch26 {

  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-7-3 15:47

  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-7-3 15:47

  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.     }
複製代碼

作者: 謝宗佑    時間: 2019-7-3 15:48

  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.                 {
  9.         System.out.println(i);
  10.                   
  11.         }
  12.     }
  13.     }
  14. }
複製代碼

作者: 古昇暘    時間: 2019-7-3 15:48

  1. package ok;

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

作者: 蔡杰希    時間: 2019-7-3 15:51

  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-7-3 15:56

  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