int day = 1;
switch(day) {case 1:System.out.println("星期一");break;case 2:System.out.println("星期二");break;case 3:System.out.println("星期三");break;case 4:System.out.println("星期四");break;case 5:System.out.println("星期五");break;case 6:System.out.println("星期六");break;case 7:System.out.println("星期日");break;default:System.out.println("输入有误");break;
}
可以作为switch参数数据类型的有:int、type、short、char、String、枚举(整数、枚举、字符、字符串)
不能作为switch参数的有:long、float、double、boolean、复杂的表达式