package com.song.struct;
public class WhileDemo01 {
public static void main(String[] args) {
//循环结构
//输出1~100
int i = 0;
while (i<100){
i++;
System.out.println(i);
}
}
}
struct while study Hard.01
最新推荐文章于 2021-03-17 09:44:09 发布