返回列表 發帖

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

TOP

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

TOP

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

TOP

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

TOP

  1. public class Ch23 {

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

TOP

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

TOP

  1. package egoistic;

  2. public class egoistic {

  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.         }
  12.         }

  13. }
複製代碼

TOP

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

TOP

  1. public class Ch59 {

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

  9.         }

  10. }
複製代碼

TOP

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

TOP

返回列表