if语句
1. if(表达式){
语句;
}
2. if(表达式){
}else{
3. if(表达式){
}else if(表达式2){
switch语句
循环语句
for循环
for(int i=0;i<100;i++){
while语句
do while