摘要: 流程控制 do{命令}while(布尔式子) 和while一样当不满足布尔式子时结束循环,区别在于 do while至少执行了一次命令 public class DoWhileDemo001 { public static void main(String[] args) { int i=1; in 阅读全文
posted @ 2021-09-04 20:46 杨航94 阅读(73) 评论(0) 推荐(0)