大神帮忙看看这个是哪儿出了问题 ,switch(tomorrow)这行会报错。
String tomorrow="星期六";
switch(tomorrow){
case "星期一":
case "星期三":
case "星期五":
System.out.println("早餐吃包子");
break;
case "星期二":
case "星期四":
case "星期六":
System.out.println("早餐吃油条");
break;
default:System.out.println("吃主席套餐");
}