package com.lyc.struct;

public class WhileDemo01 {
public static void main(String[] args) {
//输出1~100
int i =0;
while (i<100){
i++;
System.out.println(i);
}
}
}
posted on 2021-01-06 19:52  liuyunche  阅读(73)  评论(0)    收藏  举报