Board logo

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

作者: 鄭繼威    時間: 2022-11-11 17:17     標題: 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. }
複製代碼

作者: 鍾易澄    時間: 2022-11-12 10:42

  1. public class Ch23{
  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. }
複製代碼

作者: 孫子傑    時間: 2022-11-12 10:43

  1. public class Ch23{
  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. }
複製代碼

作者: 許馹東    時間: 2022-11-12 10:46

  1. public class Ch01
  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. }
複製代碼

作者: 郭博鈞    時間: 2022-11-12 10:47

  1. public class Ch01
  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. }
複製代碼

作者: 許宸瑀    時間: 2022-11-12 10:50

本帖最後由 許宸瑀 於 2022-11-12 10:55 編輯
  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. }
複製代碼

作者: 曾善勤    時間: 2022-11-12 10:54

  1. public class Ch2{
  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. }
複製代碼

作者: 林紘憲    時間: 2022-11-12 10:55

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

作者: 高昀昊    時間: 2022-11-12 10:55

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

作者: 柳侑辰    時間: 2022-11-19 09:25

  1. public class Ch03
  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. }
複製代碼

作者: 田家齊    時間: 2022-11-19 10:42

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

作者: 高鋐鈞    時間: 2022-11-26 09:28

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

作者: 利勁鋼    時間: 2022-12-2 21:43

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





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