您的位置:首页 > 健康 > 养生 > 每日一题——第八十七题

每日一题——第八十七题

2025/1/6 18:34:07 来源:https://blog.csdn.net/weixin_45778846/article/details/142109596  浏览:    关键词:每日一题——第八十七题

题目:给出年月日,计算该日期是这一年的第几天

#include<stdio.h>
#include<stdbool.h>bool isLeapYear(int year) {return (year % 4 == 0 && year % 100 != 0) || (year % 400 == 0);
}int dayOfYear(int year, int month, int day) {//非闰年每月的天数int daysInMonth[12] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};if (isLeapYear(year)) {daysInMonth[1] = 29;}int totalDays = 0;for (int i = 0; i < month - 1; i++){totalDays += daysInMonth[i];}totalDays += day;return totalDays;}int main() {int year, month, day;printf("请输入年月日(格式为:年  月  日):");scanf_s("%d %d %d", &year, &month, &day);printf("该日期是这一年的第 %d 天\n", dayOfYear(year, month, day));return 0;
}

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com