解题思路:定义一个结构体模板,先判断是闰年还是平年,然后再分别赋值
注意事项:
参考代码:
#include<stdio.h>
struct Date {
int month;
int days;
};
int main(void)
{
struct Date leap_year[12] = {
{1, 31},{2, 29},{3, 31},{4, 30},{5, 31},{6, 30},{7, 31},{8, 31},{9, 30},{10, 31},{11, 30},{12, 31}
}; //闰年
struct Date non_leap_year[12] = {
{1, 31},{2, 28},{3, 31},{4, 30},{5, 31},{6, 30},{7, 31},{8, 31},{9, 30},{10, 31},{11, 30},{12, 31}
}; //平年
int i, x, y, z; //x, y, z分别是年,月,日
int total = 0; //总天数
scanf("%d %d %d", &x, &y, &z);
if ((!(x%4) && x%100) || !(x%400)) //判断是不是闰年
{
for (i = 0; i < y - 1; i++) //把y月之前每个月的天数加起来,然后加当月的天数
total += leap_year[i].days;
total += z;
}
else //判断是不是平年
{
for (i = 0; i < y - 1; i++)
total += non_leap_year[i].days;
total += z;
}
printf("%d", total);
return 0;
}
0.0分
0 人评分
C语言网提供由在职研发工程师或ACM蓝桥杯竞赛优秀选手录制的视频教程,并配有习题和答疑,点击了解:
一点编程也不会写的:零基础C语言学练课程
解决困扰你多年的C语言疑难杂症特性的C语言进阶课程
从零到写出一个爬虫的Python编程课程
只会语法写不出代码?手把手带你写100个编程真题的编程百练课程
信息学奥赛或C++选手的 必学C++课程
蓝桥杯ACM、信息学奥赛的必学课程:算法竞赛课入门课程
手把手讲解近五年真题的蓝桥杯辅导课程
发表评论 取消回复