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