Board logo

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

作者: 鄭繼威    時間: 2023-5-24 14:29     標題: continue, break, return (二)

break 語法能強制程序立即跳出所在迴圈.
  1. public class Ch27
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         for(int i=1; i<=10; i++)
  6.         {
  7.              if(i==5)
  8.                  break;
  9.              System.out.println(i);
  10.         }
  11.         for(int i=1; i<=10; i++)
  12.         {
  13.              System.out.println(i);
  14.         }
  15.     }
  16. }
複製代碼

作者: 李彣    時間: 2023-5-24 21:03

  1. public class B
  2. {

  3.         public static void main(String[] args)
  4.     {
  5.                 for(int i=1; i<=10; i++)
  6.         {
  7.              if(i==5)
  8.              {
  9.                  break;
  10.              }
  11.              System.out.println(i);
  12.         }
  13.         for(int i=1; i<=10; i++)
  14.         {
  15.              System.out.println(i);
  16.         }
  17.     }
  18. }
複製代碼

作者: 林劭澧    時間: 2023-5-24 21:03

  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==5)
  8.                  break;
  9.              System.out.println(i);
  10.         }
  11.         for(int i=1; i<=10; i++)
  12.         {
  13.              System.out.println(i);
  14.         }
  15.     }
  16. }
複製代碼

作者: 黃裕恩    時間: 2023-5-24 21:03

本帖最後由 黃裕恩 於 2023-5-24 21:04 編輯
  1. public class Dgh
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         for(int i=1; i<=10; i++)
  6.         {
  7.              if(i==5)
  8.                  break;
  9.              System.out.println(i);
  10.         }
  11.         for(int i=1; i<=10; i++)
  12.         {
  13.              System.out.println(i);
  14.         }
  15.     }
  16. }
複製代碼

作者: 林劭杰    時間: 2023-5-24 21:04

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





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