1. 语法:

switch(表达式){
	case 常量值1:
		若干个语句
		break;
	case 常量值2: 
		若干个语句
		break;
	case 常量值n:
		若干个语句
		break;
	default:
		若干语句
}