杭电1201_18岁生日

Problem Description:

Gardon的18岁生日就要到了,他当然很开心,可是他突然想到一个问题,是不是每个人从出生开始,到达18岁生日时所经过的天数都是一样的呢?似乎并不全都是这样,所以他想请你帮忙计算一下他和他的几个朋友从出生到达18岁生日所经过的总天数,让他好来比较一下。

Input:

一个数T,后面T行每行有一个日期,格式是YYYY-MM-DD。如我的生日是1988-03-07。

Output:

T行,每行一个数,表示此人从出生到18岁生日所经过的天数。如果这个人没有18岁生日,就输出-1。

Sample Input:

1

1988-03-07

Sample Output:

6574


做完之后感觉是道水题,但是好几遍才AC,主要还是因为没有考虑全面,细节的地方出错。

      AC代码:

#include
#include

struct DATE
{
	int year;
	int month;
	int day;
} *date;
/* 判断是否为闰年 若是 则返回1 */
int isLeepYear(int year)
{
	if ((year % 4 == 0 && year % 100 != 0) || (year % 400 == 0))
	{
		return 1;
	}
	else
	{
		return 0;
	}
}

/*计算整年所用的天数*/
int theYearDayCalculate(int year)
{
	int temp_year = year;
	int sum = 365 * 18;
	int i;
	for (i = temp_year + 1; i < temp_year + 18; i++)
	{
		if (isLeepYear(i))
		{
			sum += 1;
		}
	}
	return sum;
}

void main()
{
	//输入  
	int T;
	scanf("%d", &T);
	date = (struct DATE *)malloc(T*sizeof(struct DATE));

	for (int i = 0; i < T; i++)
	{
		scanf("%d-%d-%d", &date[i].year, &date[i].month, &date[i].day);
	}
	
	
	for (int i = 0; i < T; i++)
	{
		/*过不了18岁*/
		if (isLeepYear(date[i].year) && !isLeepYear(date[i].year + 18) && date[i].month == 2 && date[i].day == 29)
		{
			printf("-1\n");
		}
		else if ((isLeepYear(date[i].year) && date[i].month < 3) || isLeepYear(date[i].year + 18) && date[i].month >= 3)
		{
			printf("%d\n", theYearDayCalculate(date[i].year) + 1);
		}
		else
		{
			printf("%d\n", theYearDayCalculate(date[i].year));
		}
	}
	//scanf("%d", &T);
}



你可能感兴趣的:(杭电ACM)