摘要: 循环结构 While循环 格式: while(循环条件){ 循环体语句(被重复执行的代码); 迭代语句; } public class WhileDemo1 { public static void main(String[] args) { //输出1~5 int i =0; while(i<5) 阅读全文
posted @ 2022-09-23 15:01 瞎皮 阅读(170) 评论(0) 推荐(0)