Board logo

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

作者: tonyh    時間: 2016-4-15 19:49     標題: for 迴圈 (三)

本帖最後由 tonyh 於 2016-4-15 20:51 編輯

顯示0~100間所有奇數, 從99開始倒數至1, 直向排列.
  1. public class Ch15
  2. {
  3.     public static void main (String args[])
  4.     {
  5.          for(int i=99; i>=1; i-=2)
  6.              System.out.println(i);
  7.     }
  8. }
複製代碼

作者: 沈子耕    時間: 2016-4-15 20:14

  1. public class Ch18{
  2.        public static void main(String args[]){
  3.               for(int i=99; i>=1; i-=2)
  4.                       System.out.println(i);
  5.        }
  6. }
複製代碼

作者: 李知易    時間: 2016-4-15 20:14

本帖最後由 李知易 於 2016-4-15 20:44 編輯
  1. public class Ch19
  2. {
  3.       public static void main (String args[])
  4.       {
  5.          for(int i=99;i>=1;i-=2)
  6.          {
  7.            System.out.println(i);
  8.          }
  9.       }


  10. }
複製代碼

作者: 黃柏維    時間: 2016-4-15 20:15

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

作者: 曾挺桂    時間: 2016-4-15 20:16

  1. import java.io.Console;
  2. public class Ch10
  3. {
  4.    for(i=99; i>=1; i-=2)
  5.             System.out.println(i);
  6. }
  7. }
複製代碼

作者: 陳思惟    時間: 2016-4-15 20:17

  1. import java.lang.System;   //由於編譯時套件java.lang會自動引入, 故可忽略
  2. public class Ch19     //主類別
  3. {
  4.     public static void main(String args[])    //主方法
  5.     {
  6.          for(int i=99;i>=1;i-=2)
  7.          System.out.println(i);
  8.     }
  9. }
複製代碼

作者: 黃璽安    時間: 2016-4-15 20:19

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

  9.     }
  10. }
複製代碼

作者: 梁和雋    時間: 2016-4-15 20:20

本帖最後由 梁和雋 於 2016-4-15 20:43 編輯
  1. public class Ch1
  2. {
  3.       public static void main (String args[])
  4.       {
  5.          for(int i=99;i>=1;i-=2)
  6.            System.out.println(i);
  7.       }
  8. }
複製代碼

作者: 曾挺桂    時間: 2016-4-15 20:50

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

作者: 洪振庭    時間: 2016-4-15 21:08

  1. public class Ch21
  2. {
  3.       public static void main (String args[])
  4.       {
  5.          for(int i=99;i>=1;i-=2)
  6.            System.out.println(i);
  7.       }


  8. }
複製代碼





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