Board logo

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

作者: tonyh    時間: 2012-10-8 18:57     標題: 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. }
複製代碼

作者: 劉永記    時間: 2012-10-8 18:59

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

作者: 晏有聰    時間: 2012-10-8 19:00

本帖最後由 晏有聰 於 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);
      }
   }
}
作者: 林立尉    時間: 2012-10-8 19:19

public class ch11
{
  public static void main (String args[])
  {
      for(int i=50; i<=150; i=i+5)
      {
          System.out.println(i);
      }
  }
}
作者: 林立尉    時間: 2012-10-8 19:20

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





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