摘要: 流程控制3 循环结构 Java5中新增了一个增强版的for循环 while循环 public class WhileDemo01 { public static void main(String[] args) { // 输入1-100 int i =0; while (i<100){//布尔表达式 阅读全文
posted @ 2021-02-17 17:26 Rookik 阅读(97) 评论(0) 推荐(0)