Java中有三种循环结构
if(condition){
}
else{
}
或者多重循环
if(condition){
}
else if(){
}
else{
}
if循环是可以嵌套的
do-while循环也有两种,
while(condition){
}
do{
}
while{}
还要最后一种
switch(param){
case 1:code; break;
case 2:code;break;
defalut: x;break;
}
集合的增强for循环
for(T x:list){
//其中T是集合中元素的类型
}
控制循环的关键词有
break 中断当前循环;
continue 跳出当前循环,在跳到}前;