//循环语句
//符合条件,循环继续执行,否则循环退出。
//特点:
//先判断,后执行 public class Test16{
public static void main(String args[]){
int count=1;
while (count<=100){
System.out.println("开始执行"+count);
count+=1;
}
}
}
05-11 13:57