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