Board logo

標題: 補充continue [打印本頁]

作者: 葉桔良    時間: 2021-10-16 11:09     標題: 補充continue

本帖最後由 葉桔良 於 2022-4-1 19:26 編輯

在continue的後面可以加上一個代碼,並在其他迴圈前面加上代碼,可跳至該行並繼續執行。
  1. public class test
  2. {
  3.        public static void main(String args[])
  4.        {

  5. a:         for(int i=1;i<=9;i++)
  6.          {
  7.             
  8.              for(int j=1;j<=9;j++){
  9.                  if(i*j>25){
  10.                         System.out.println();
  11.                         continue a;
  12.                  }
  13.                  System.out.print(i+"x"+j+"="+i*j+"\t");
  14.              }
  15.              System.out.println();
  16.          }
  17.     }
  18. }
複製代碼





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