Board logo

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

作者: 鄭繼威    時間: 2022-9-24 00:14     標題: for 迴圈 (一)

本帖最後由 鄭繼威 於 2022-10-1 11:53 編輯

語法

//起始值(起點) 結束條件(終點) 控制項(步伐)
for(起始值;持續條件;控制項){
        //要for執行的事
}


在螢幕上顯示數字從1到10, 直向排列.
可以參考一下當初在C++如何寫的
作者: 柳侑辰    時間: 2022-9-24 11:52

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

作者: 田家齊    時間: 2022-9-24 12:02

  1. public class Ch08
  2. {
  3.     public static void main(String args[])
  4.     {

  5.          for(int x=1;x<=10;x++)
  6.          {
  7.              System.out.println(x);
  8.          }

  9.     }
  10. }
複製代碼

作者: 高鋐鈞    時間: 2022-9-25 11:01

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

作者: 利勁鋼    時間: 2022-9-30 21:16

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

作者: 許馹東    時間: 2022-10-1 10:17

本帖最後由 許馹東 於 2022-10-1 10:34 編輯
  1. public class Ch01
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         for(int j=1;j<=10;j++)
  6.         {
  7.             System.out.println(j);
  8.         }
  9.     }
  10. }
複製代碼

作者: 郭博鈞    時間: 2022-10-1 10:19

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

作者: 許宸瑀    時間: 2022-10-1 10:49

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

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

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

作者: 曾善勤    時間: 2022-10-1 11:53

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

作者: 鄭繼威    時間: 2022-10-1 11:54

以上9位同學OK
作者: 鍾易澄    時間: 2022-10-1 11:56

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

作者: 孫子傑    時間: 2022-10-8 00:03

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





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