为了账号安全,请及时绑定邮箱和手机立即绑定

看不懂有人解释下吗

    switch(month-1)

    {

        case 12:day+=31;

        case 11:day+=30;

        case 10:day+=31;

        case 9:day+=30;

        case 8:day+=31;

        case 7:day+=31;

        case 6:day+=30;

        case 5:day+=31;

        case 4:day+=30;

        case 3:day+=31;

        case 2:if((year%4==0 && year%100) || year%400==0) day+=29; else day+=28;

        case 1:day+=31;

    }

    printf("2008年8月8日是该年的第%d天",day);


为什么是month-1

正在回答

1 回答

你这个语句有问题,因为当month=1时,会无限循环。

应该

#include <stdio.h>

int main() 

    int year = 2008;

    int month = 8;

    int day = 8;

    int i=0;

    if(year%4==0)

    {

        switch(month)

        {

            case 12:i+=30;

            case 11:i+=31;

            case 10:i+=30;

            case 9:i+=31;

            case 8:i+=31;

            case 7:i+=30;

            case 6:i+=31;

            case 5:i+=30;

            case 4:i+=31;

            case 3:i+=29;

            case 2:i+=31;

            case 1:i+=day;break;

            default:break;

        }

        printf("%d年%d月%d日是该年的第%d天",year,month,day,i);

    }

    else

    {

        switch(month)

        {

            case 12:i+=30;

            case 11:i+=31;

            case 10:i+=30;

            case 9:i+=31;

            case 8:i+=31;

            case 7:i+=30;

            case 6:i+=31;

            case 5:i+=30;

            case 4:i+=31;

            case 3:i+=28;

            case 2:i+=31;

            case 1:i+=day;break;

            default:break;

        }

        printf("%d年%d月%d日是该年的第%d天",year,month,day,i) ;

    }

return 0;

}


0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

看不懂有人解释下吗

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信