为什么我的switch运行不了

img

如图,感觉输入没错,但是运行就没有结果。

img

scanf("%d",&day);

少了&符号


scanf("%d",day);
改为
scanf("%d",&day);