IF语句switch语句 IF语句1.if(condition1){}if(condition2){}else{}2.if(condition){}else if(condition){}else{} switch语句eg:switch(month){case1:case3:case5:break;default:….break;}