返回列表 發帖

for 迴圈

本帖最後由 tonyh 於 2012-10-8 19:10 編輯
  1. public class ch11
  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. }
複製代碼
  1. public class ch11
  2. {
  3.   public static void main (String args[])
  4.   {
  5.           //初始值; 終止值; 遞增或遞減的條件
  6.       for(int i=100; i>=1; i--)    //i=i-1
  7.       {
  8.           System.out.println(i);
  9.       }
  10.   }
  11. }
複製代碼
  1. public class ch11
  2. {
  3.   public static void main (String args[])
  4.   {
  5.           //初始值; 終止值; 遞增或遞減的條件
  6.       for(int i=1; i<=100; i=i+2)    //i+=2
  7.       {
  8.           System.out.println(i);
  9.       }
  10.   }
  11. }
複製代碼

  1. public class ch11  //類別
  2. {
  3.   public static void main (String arg[]) //方法
  4.   {
  5.     for (int i=1; i<=10;i++)
  6.     System.out.println(i);
  7.   }
  8. }
複製代碼

TOP

本帖最後由 晏有聰 於 2012-10-8 19:01 編輯

public class ch11
{
   public static void main (String args[])
   {
      for (int i=2;i<=10;i=i+2)
      {
         System.out.println(i);
      }
   }
}

TOP

public class ch11
{
  public static void main (String args[])
  {
      for(int i=50; i<=150; i=i+5)
      {
          System.out.println(i);
      }
  }
}

TOP

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

TOP

返回列表