B1028.人口普查
某城镇进行人口普查,得到了全体居民的生日。现请你写个程序,找出镇上最年长和最年轻的人。
这里确保每个输入的日期都是合法的,但不一定是合理的——假设已知镇上没有超过200岁的老人,而今天是2014年9月6日,所以超过200岁的生日和未出生的生日都是不合理的,应该被过滤掉。
输入格式:
输入在第一行给出正整数N,取值在(0, 105];随后N行,每行给出1个人的姓名(由不超过5个英文字母组成的字符串)、以及按“yyyy/mm/dd”(即年/月/日)格式给出的生日。题目保证最年长和最年轻的人没有并列。
输出格式:
在一行中顺序输出有效生日的个数、最年长人和最年轻人的姓名,其间以空格分隔。
输入样例:
5
John 2001/05/12
Tom 1814/09/06
Ann 2121/01/30
James 1814/09/05
Steve 1967/11/20
输出样例:
3 Tom John
代码样例:
#include "cstdio"typedef struct Person
{char name[10];int year;int month;int day;
} Person;
Person oldest,youngest,left,right,temp;bool LessEqu(Person a,Person b)
{if(a.year != b.year) return a.year <= b.year;else if(a.month != b.month) return a.month <= b.month;else return a.day <= b.day;
}bool MoreEqu(Person a,Person b)
{if(a.year != b.year) return a.year >= b.year;else if(a.month != b.month) return a.month >= b.month;else return a.day >= b.day;
}void init()
{youngest.year = left.year = 1814;oldest.year = right.year = 2014;youngest.month = oldest.month = left.month = right.month = 9;youngest.day = oldest.day = left.day = right.day = 6;
}int main()
{init(); //初始化youngest oldest left rightint n,num=0; //num存放合法日期的人数scanf("%d",&n);for(int i=0; iscanf("%s %d/%d/%d",temp.name,&temp.year,&temp.month,&temp.day);if(MoreEqu(temp,left) && LessEqu(temp,right)){num ++;if(LessEqu(temp,oldest)) oldest = temp;if(MoreEqu(temp,youngest)) youngest = temp;}}if(num == 0) printf("0\n");else printf("%d %s %s\n",num,oldest.name,youngest.name);return 0;
}
本文来自互联网用户投稿,文章观点仅代表作者本人,不代表本站立场,不承担相关法律责任。如若转载,请注明出处。 如若内容造成侵权/违法违规/事实不符,请点击【内容举报】进行投诉反馈!
