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