kai


私信TA

用户名:dotcpp0593017

访问量:559

签 名:

等  级
排  名 4882
经  验 1554
参赛次数 0
文章发表 18
年  龄 0
在职情况 学生
学  校
专  业

  自我简介:

TA的其他文章

/*

写一个函数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 人评分

  评论区