Board logo

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

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

顯示0~100間所有奇數, 從99開始倒數至1, 直向排列.
作者: 林土水    時間: 2021-8-28 19:55

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

作者: 林鼎傑    時間: 2021-8-28 20:01

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

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

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

作者: 余柏緯    時間: 2021-8-28 20:03

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

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

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

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

  1. import java.io.Console;
  2. public class Ch15
  3. {
  4.     public static void main(String args[])
  5.     {
  6.       for(int i=99; i>=1; i-=2)
  7.       {
  8.           System.out.println(i);

  9.       }
  10. }
  11. }
複製代碼

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

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

作者: 呂尚霖    時間: 2021-8-28 20:22

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

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

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

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

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

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

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





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