顺序结构
选择结构:if switch
if(){}
else if(){}
else{}
if语句至多有一个else语句 放在最后
switch(){
case :
break;
default:
}
case具有穿透现象 必须用break停止
while for 循环