Board logo

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

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

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

顯示0~100間所有偶數, 直向排列.
作者: 李知易    時間: 2016-4-15 20:13

本帖最後由 李知易 於 2016-4-15 20:45 編輯
  1. public class Ch18
  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. }
複製代碼

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

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

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

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

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

  1. public class Ch16
  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. }
複製代碼

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

  1. import java.lang.System;   //由於編譯時套件java.lang會自動引入, 故可忽略
  2. public class Ch18     //主類別
  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. }
複製代碼

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

  1. public class Ch1
  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. }
複製代碼

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

本帖最後由 曾挺桂 於 2016-4-15 20:51 編輯
  1. public class Ch16
  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. }
複製代碼

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

  1. public class Ch20
  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. }
複製代碼





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