Board logo

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

作者: tonyh    時間: 2020-7-24 19:26     標題: for 迴圈 (二)

顯示0~100間所有偶數, 直向排列.
作者: 黃辰昊    時間: 2020-7-24 20:02

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

作者: 劉愷鈞    時間: 2020-7-24 20:03

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

作者: 董宸佑    時間: 2020-7-24 20:03

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

作者: 陳宥穎    時間: 2020-7-24 20:04

  1. import java.io.Console;
  2. public class Ch06
  3. {
  4.   public static void main(String args[])
  5.   {
  6.      for(int i=1 i<=100; i+=2)
  7.      {
  8.       System.out.println(i);
  9.      }

  10.   }
  11. }
複製代碼

作者: 沈子晏    時間: 2020-7-24 20:05

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

作者: 蔡忻霓    時間: 2020-7-24 20:05

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

作者: 黃宥華    時間: 2020-7-24 20:05

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

  5.         for(int i=0;i<=100;i+=2){
  6.             System.out.println(i);
  7.         }
  8.     }
  9. }
複製代碼

作者: 孫嘉駿    時間: 2020-7-24 20:05

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

作者: 林政瑜    時間: 2020-7-24 20:08

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

作者: 李宇澤    時間: 2020-7-24 20:09

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

作者: 黃柏叡    時間: 2020-7-24 20:11

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

作者: 夏子涵    時間: 2020-8-6 19:33

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





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