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

TOP

返回列表