摘要: Java的循环结构 while循环结构 先判断后循环 public class Demo09 { public static void main(String[] args) { //从1输入到100 int i = 0; //while (布尔表达式) {循环内容} while (i<100){ 阅读全文
posted @ 2021-03-04 23:52 默默努力的路人甲 阅读(39) 评论(0) 推荐(0)