Board logo

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

作者: tonyh    時間: 2020-11-14 11:03     標題: 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-11-14 11:18

  1. public class OwO{
  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-11-14 11:19

  1. public class Ch666
  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-11-14 11:19

  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-11-14 11:20

  1. public class A02{
  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-11-14 11:20

  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-11-14 11:30

  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-11-21 09:14

  1. public class v{
  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