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