请问大佬们这是哪里错了
#include <stdio.h>
int main()
{
/* 定义需要计算的日期 */
int year = 2008;
int month = 8;
int day = 8;
/*
* 请使用switch语句,if...else语句完成本题
* 如有想看小编思路的,可以点击左侧任务中的“不会了怎么办”
* 小编还是希望大家独立完成哦~
*/
switch(month-1)
{
case 1:day+=31;
case 2:if(year%4==0&&year%100!=0) day+=29; else day+=28;
case 3:day+=31;
case 4:day+=30;
case 5:day+=31;
case 6:day+=30;
case 7:day+=31;
case 8:day+=31;break;
}
printf("%d年%d月8日,第%d天",year,month,day);
return 0;
}