這個(gè)哪里有問題嗎?運(yùn)行不起來,求指教。
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.pruntln("主席套餐");
? ? ? ? ? ?}
? ? ? ?}
}
2019-08-06
第一個(gè)break少了;
2019-07-31
兩個(gè)錯(cuò)誤之處:
一,break后面缺少 分號(hào) ‘;’,
二,default 輸出語句寫錯(cuò)了,咱能細(xì)心點(diǎn)嘛,println 寫成 pruntln了;