摘要: 输出1-10之间的数据 1 public class LX1 { 2 public static void main(String[] args) { 3 for (int x=1;x<=10;x++){ 4 System.out.println(x); 5 } 6 } 7 } 输出1-100之间的 阅读全文
posted @ 2022-03-20 22:25 ztgzqn 阅读(114) 评论(0) 推荐(0)