【C++】PAT乙級1028
1028 人口普查 (20 分)
某城鎮進行人口普查,得到了全體居民的生日。現請你寫個程式,找出鎮上最年長和最年輕的人。
這裡確保每個輸入的日期都是合法的,但不一定是合理的——假設已知鎮上沒有超過 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<iostream> #include<string> using namespace std; int main(){ struct People{ string name; string date; }; int N; int i; int counts=0; string max="1814/09/06"; string min="2014/09/06"; int max1=0; int min1=0; cin>>N; struct People P[N]; for(i=0;i<N;i++){ cin>>P[i].name>>P[i].date; if(P[i].date>="1814/09/06"&&P[i].date<="2014/09/06") { counts++; if(P[i].date<min) { min=P[i].date;min1=i; } if(P[i].date>max) { max=P[i].date;max1=i; } } } cout<<counts; if(counts) {cout<<" "<<P[min1].name; cout<<" "<<P[max1].name;} else{ cout<<endl; } return 0; }