IF语句

1.if(condition1){}
if(condition2){}
else{}
2.if(condition){}
else if(condition){}
else{}

switch语句

eg:
switch(month){
case1:
case3:
case5:
break;
default:
….
break;
}