Board logo

標題: while 迴圈 (一) [打印本頁]

作者: tonyh    時間: 2020-8-7 19:41     標題: while 迴圈 (一)

利用 while 迴圈, 直列印出1~10.
  1. public class Ch23{
  2.     public static void main(String args[])
  3.     {
  4.         int i=1;
  5.         while(i<11)
  6.         {
  7.             System.out.println(i);
  8.             i++;
  9.         }
  10.     }
  11. }
複製代碼

作者: 黃辰昊    時間: 2020-8-7 20:05

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

作者: 孫嘉駿    時間: 2020-8-7 20:05

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

作者: 陳宥穎    時間: 2020-8-7 20:05

本帖最後由 陳宥穎 於 2020-8-7 20:06 編輯
  1. public class Ch22{
  2.     public static void main(String args[])
  3.     {
  4.          int i=1;
  5.          while(i<=10)
  6.          {
  7.            System.out.println(i);
  8.            i++;
  9.          }
  10.     }
  11. }
複製代碼

作者: 夏子涵    時間: 2020-8-7 20:05

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

作者: 劉愷鈞    時間: 2020-8-7 20:05

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

作者: 董宸佑    時間: 2020-8-7 20:05

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

作者: 黃宥華    時間: 2020-8-7 20:05

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

作者: 李宇澤    時間: 2020-8-7 20:05

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

作者: 黃柏叡    時間: 2020-8-7 20:08

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

作者: 蔡忻霓    時間: 2020-8-7 20:12

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

作者: 沈子晏    時間: 2020-8-14 18:43

  1. public class Ch23
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         int n=1;
  6.         while(n<=10)
  7.         {
  8.             System.out.println(n);
  9.             n++;
  10.         }
  11.     }
  12. }
複製代碼





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