不知道哪里出错了,求解

来源:4-17 switch与if语句的应用

雨晴啊

2018-08-24 18:35

#include <stdio.h>
int main()
{
    /* 定义需要计算的日期 */
    int year = 2008;
    int month = 7;
    int day = 8;
    int total=0;
    switch(month)
    {
        case 1:total+=31;
        case 2:
        if(year%4==0&&year%100==0&&year%400!=0)
        {total+=29;}
        else{
        total+=28;
        }
        case 3:total+=31;
        case 4:total+=30;
        case 5:total+=31;
        case 6:total+=30;
        case 7:total+=31;
        case 8:total+=31;
        case 9:total+=30;
        case 10:total+=31;
        case 11:total+=30;
        case 12:total+=31;
    }
     total=total+day+1;
     printf("%d年%d月%d日是该年的%d天",year,month,day,total);
 
 return 0;
}



请问哪里出了问题

写回答 关注

2回答

  • qq_灰灰_9
    2018-08-25 15:18:08

    最后输出的total为什么要在加一个1呢

    雨晴啊

    算日子不是要加一天吗

    2018-08-27 14:18:22

    共 1 条回复 >

  • 慕前端7392006
    2018-08-24 20:34:04

    闰年判断错了

    if(year%400==0||year%100!=0&&year%4==0)

    雨晴啊

    我找出错误了,有中文符号,谢谢

    2018-08-27 15:45:53

    共 2 条回复 >

C语言入门

C语言入门视频教程,带你进入编程世界的必修课-C语言

926020 学习 · 20793 问题

查看课程

相似问题