返回列表 發帖

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. package text369;
  2. public class text123 {
  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.        
複製代碼
張閎鈞OuO

TOP

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

TOP

  1. public class ASDF
  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. }
複製代碼
我是眾神之王XXX  I love you
0000000000

TOP

  1. package nsez;

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

TOP

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

TOP

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

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. import java.util.Scanner;

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

TOP

返回列表