case 后面不能跟中文汉字 为什么答案里面有? 我的代码错在哪里了?
public class HelloWorld{
public static void main(String[] args ){
char today = '日';
switch (today) {
case '一':
case '三':
case '五':
System.out.println("早餐吃包子");
break;
case '二':
case '四':
case '六':
System.out.println("早餐吃油条");
break;
default:
System.out.println("吃主席套餐");
}
}
}