返回列表 發帖

for 迴圈 (一)

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

語法

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


在螢幕上顯示數字從1到10, 直向排列.
可以參考一下當初在C++如何寫的

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

TOP

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

TOP

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

TOP

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

TOP

本帖最後由 許馹東 於 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. }
複製代碼

TOP

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

TOP

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

TOP

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

TOP

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

TOP

以上9位同學OK

TOP

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

TOP

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

TOP

返回列表