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

求指点哪里有错误!

#include <stdio.h>

int main() 

    /* 定义需要计算的日期 */

    int year = 2008;

    int month = 8;

    int day = 8;

    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==0) || (year%400==0))

        day+=29;

        else

        day+=28;

        case 1:day+=31;

    }

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

return 0;

}


正在回答

1 回答

计算闰年的公式错了,闰年是:1、能整除4且不能整除100  2、能整除400 。

所以应该是   if((year%4==0 && year%100!=0) || (year%400==0))

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

举报

0/150
提交
取消
C语言入门
  • 参与学习       926020    人
  • 解答问题       20793    个

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

进入课程

求指点哪里有错误!

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