while while(布尔表达式){ //循环内容 } 大部分需要让循环停止,需要一个让表达式失效的方式来结束循环 do while do{ //代码 }while(布尔判断) 肯定会先执行一次 for for(初始值;条件;自增or其他) 可以为for(; ;) 100.for快捷键 print不会自动换行、println会自动换行 \t \n 增强for循环 for(声明语句:表达式){ //代码句子 } 一般用于循环数组和集合