Board logo

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

作者: tonyh    時間: 2016-4-29 19:41     標題: while 迴圈 (一)

本帖最後由 tonyh 於 2016-4-29 19:48 編輯

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

作者: 曾挺桂    時間: 2016-4-29 19:49

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

作者: 王翔    時間: 2016-4-29 19:50

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

作者: 李知易    時間: 2016-4-29 19:50

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

作者: 黃柏維    時間: 2016-4-29 19:52

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

作者: 洪振庭    時間: 2016-4-29 19:53

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

作者: 陳思惟    時間: 2016-4-29 19:54

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

作者: 沈子耕    時間: 2016-4-29 19:54

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

作者: 梁和雋    時間: 2016-4-29 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. }
複製代碼

作者: 黃璽安    時間: 2016-4-29 20:11

  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://seed.istak.org.tw/) Powered by Discuz! 7.2