返回列表 發帖

for 迴圈 (一)

在螢幕上顯示數字從1到10, 直向排列.

  1. package bbs.istak.org.tw;

  2. public class Main {

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

  8.         }

  9. }
複製代碼
寶寶心裡苦,但寶寶不說。

TOP

  1. package www.google.com.tw;

  2. public class MAIN {

  3.         public static void main(String[] args) {
  4.                 // TODO 自動產生的方法 Stub
  5.         for(int i=0;i<=10;i++)
  6.            {
  7.         System.out.println(i);
  8.            }
  9.         }

  10. }
複製代碼

TOP

  1. package bn.tw;

  2. public class MAIN {

  3.         public static void main(String[] args) {
  4.                 // TODO 自動產生的方法 Stub
  5.                 for(int i=1;i<=10;i++){
  6.                         System.out.println(i);
  7.                         }
  8.                 }
  9.         }
複製代碼

TOP

  1. package ch01;

  2. public class CH02 {

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

TOP

  1. package www.google.com.tw;

  2. public class MAIN {

  3.         public static void main(String[] args) {
  4.                 // TODO 自動產生的方法 Stub
  5. for(int i=0;i<=10;i++)
  6.   {
  7. System.out.println(i);
  8.    }
  9.    }
  10. }
複製代碼

TOP

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

TOP

public class Hello
{
        public static void main(String[] args)
        {   
                for(int i=1;i<=10;i++)
                {
                        System.out.println(i);       
                }
        }
}

TOP

返回列表