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

返回列表