Board logo

標題: while 迴圈 [打印本頁]

作者: tonyh    時間: 2019-8-5 14:37     標題: 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. }
複製代碼

作者: 曾暘竣    時間: 2019-8-5 15:04

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

作者: 蔡明蓉    時間: 2019-8-5 15:05

本帖最後由 蔡明蓉 於 2019-8-5 15:07 編輯
  1. public class Ch023
  2. {
  3.         public static void main(String args[])
  4.         {
  5.                 int i=1;
  6.                 while(i<11){
  7.                         System.out.println(i);
  8.                         i++;
  9.                 }       
  10.         }
  11. }
複製代碼

作者: 張書涵    時間: 2019-8-5 15:05

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

作者: 黃永恩    時間: 2019-8-5 15:05

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

作者: 許育禎    時間: 2019-8-5 15:05

  1. public class CH01

  2. {

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

作者: 莊鈞程    時間: 2019-8-5 15:05

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

作者: 余奕廷    時間: 2019-8-5 15:05

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

作者: 許育慈    時間: 2019-8-5 15:05

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

作者: 潘憶承    時間: 2019-8-5 15:06

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

作者: 葉俠愷    時間: 2019-8-5 15:07

  1. public class Ch11 {

  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. }
複製代碼

作者: 何育翔    時間: 2019-8-5 15:07

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

作者: 鄭宇崴    時間: 2019-8-5 15:08

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

作者: 張郁庭    時間: 2019-8-5 15:09

  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. }
複製代碼

作者: 余映均    時間: 2019-8-5 15:09

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

作者: 張嘉栩    時間: 2019-8-5 15: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. }
複製代碼

作者: 黃芊嬡    時間: 2019-8-5 15:13

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





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