返回列表 發帖
  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

返回列表