Board logo

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

作者: tonyh    時間: 2021-8-28 19:38     標題: for 迴圈 (二)

顯示0~100間所有偶數, 直向排列.
作者: 林土水    時間: 2021-8-28 19:54

  1. import java.io.Console;
  2. public class Ch06
  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. }
複製代碼

作者: 余柏緯    時間: 2021-8-28 19:55

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

作者: 林鼎傑    時間: 2021-8-28 19:58

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

作者: 蔡寓珉    時間: 2021-8-28 20:02

  1. import java.io.Console;
  2. public class Ch12
  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. }
複製代碼

作者: 王秉鈞    時間: 2021-8-28 20:02

本帖最後由 王秉鈞 於 2021-8-28 20:19 編輯
  1. import java.io.Console;
  2. public classCh08
  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. }
複製代碼

作者: 黃子倢    時間: 2021-8-28 20:04

  1. import java.io.Console;
  2. public class Ch15
  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. }
複製代碼

作者: 林佑宸    時間: 2021-8-28 20:05

本帖最後由 林佑宸 於 2021-8-28 20:21 編輯
  1. import java.io.Console;
  2. public class Ch14
  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. }
複製代碼

作者: 陳志祐    時間: 2021-8-28 20:06

  1. import java.io.Console;
  2. public class Ch14
  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. }
複製代碼

作者: 許洧熏    時間: 2021-8-28 20:09

  1. import java.io.Console;
  2. public class Ch06
  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. }
複製代碼

作者: 冠宇    時間: 2021-8-28 20:15

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

作者: 俞成章    時間: 2021-8-28 20:18

  1. import java.io.Console;
  2. public class Ch06
  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. }
複製代碼

作者: 朱奕祐    時間: 2021-8-28 20:23

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





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