返回列表 發帖

while 迴圈 (一)

利用 while 迴圈, 直列印出1~10.
  1. public class Ch23{
  2.     public static void main(String args[])
  3.     {
  4.         int i=1;
  5.         while(i<11)
  6.         {
  7.             System.out.println(i);
  8.             i++;
  9.         }
  10.     }
  11. }
複製代碼

  1. public class Class {

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

  10.         }

  11. }
複製代碼

TOP

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

TOP

本帖最後由 戴偉宸 於 2019-7-6 16:04 編輯
  1. package work;

  2. public class work {

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

  10.         }

  11. }
複製代碼

TOP

  1. public class CH76 {

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

TOP

  1. public class jvav01 {

  2.         public static void main(String[] args) {
  3.                 // TODO 自動產生的方法 Stub

  4.                 int i =1;
  5.                 while(i<11)
  6.                
  7.                
  8.                 {       
  9.                
  10.                         System.out.println(i);
  11.                         i++;
  12.                 }
  13.         }

  14. }
複製代碼

TOP

  1. package haha;

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

TOP

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

TOP

  1. public class Ch01 {

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

  9.         }

  10. }
複製代碼

TOP

  1. public class World {

  2.         public static void main(String[] args) {
  3.                 // TODO 自動產生的方法 Stub

  4.                 int i=1;
  5.                 while(i<11)
  6.                 {
  7.                         System.out.println(i);
  8.                         i++;
  9.                 }
  10.         }

  11. }
複製代碼

TOP

  1. public class Ci {

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

  10.         }

  11. }
複製代碼

TOP

返回列表