Board logo

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

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

在螢幕上顯示數字從1到10, 直向排列.
作者: 李知易    時間: 2016-4-15 20:11

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


  10. }
複製代碼

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

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

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

  1. public class Ch16{
  2.        public static void main(String args[]){
  3.               for(int i=1; i<=10; i++)
  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<=10; i+=2)
  6.         {
  7.             System.out.println(i);
  8.         }

  9.     }
  10. }
複製代碼

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

本帖最後由 tonyh 於 2016-4-15 20:37 編輯
  1. import java.lang.System;   //由於編譯時套件java.lang會自動引入, 故可忽略
  2. public class Ch17     //主類別
  3. {
  4.     public static void main(String args[])    //主方法
  5.     {
  6.          for(int i=1;i<=10;i++)
  7.                System.out.println(i);
  8.     }
  9. }
複製代碼

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

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

  9.     }
  10. }
複製代碼

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

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

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

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

作者: 洪振庭    時間: 2016-4-15 20:47

  1. public class Ch19
  2. {
  3.       public static void main (String args[])
  4.       {
  5.          for(int i=0;i<=10;i++)

  6.            System.out.println(i);
  7.       }


  8. }
複製代碼





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