/*
写一个函数days,
实现第1 题的计算。
由主函数将年、月、日传递给days函数,计
算后将日子数传回主函数输出
*/
#include<stdio.h>
struct Date{
int year;
int month;
int day;
};
int Days(struct Date date)
{
int Day[13] = {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
int i,days = 0;
for(i = 1;i<date.month;i++)
days+=Day[i];
days+=date.day;
if(date.month>2)
{
if (date.year%400 == 0 || (date.year%4 == 0 && date.year%100 != 0)){
++days;
}
}
return days;
}
int main()
{
struct Date date;
printf("plase give date: ");
scanf("%d%d%d",&date.year,&date.month,&date.day);
int days = Days(date);
printf("It's day %d in the year.\n'",days);
return 0;
}0.0分
0 人评分
C语言网提供由在职研发工程师或ACM蓝桥杯竞赛优秀选手录制的视频教程,并配有习题和答疑,点击了解:
一点编程也不会写的:零基础C语言学练课程
解决困扰你多年的C语言疑难杂症特性的C语言进阶课程
从零到写出一个爬虫的Python编程课程
只会语法写不出代码?手把手带你写100个编程真题的编程百练课程
信息学奥赛或C++选手的 必学C++课程
蓝桥杯ACM、信息学奥赛的必学课程:算法竞赛课入门课程
手把手讲解近五年真题的蓝桥杯辅导课程
发表评论 取消回复