本帖最后由 jhq999 于 2022-5-5 08:52 编辑
结构体名居然和结构体实例重名#include <stdio.h>
#include <stdlib.h>
#include <string.h>
typedef struct{
char name[10];
int year;
int month;
int day;
}People;///////////////////////////////////////////////////////////////
int compare(const void *a,const void *b){
People A=*(People *)a;
People B=*(People *)b;
if(A.year!=B.year) return B.year-A.year; ///////////////////////////////////////
else if(A.month!=B.month) return B.month-A.month;///////////////////////////////////
else return B.day-A.day;///////////////////////////////////////////////
}
int main(void){
int n,i,k=0; //cot统计符合条件的人数
scanf("%d",&n);
People *people=new People[n];
int year,month,day;
char name[10]; //临时存储名字
for(i=0;i<n;i++){
scanf("%s %d/%d/%d",name,&year,&month,&day);
getchar();
//用于判断是否符合出生年月日条件,符合则将它放进people结构体中
if(((year<2014) || (year==2014 && month<9) || (year==2014 && month==9 &&day<=6))
&&((year>1814)||(year==1814 && month>9)||(year==1814 && month==9 && day>=6))){
strcpy(people[k].name,name); //k顺便统计符合年龄条件的人数
people[k].year=year;//////////////////////////////////////////////////////
people[k].month=month;////////////////////////////////////////////////////////////
people[k++].day=day;///////////////////////////////////////////////////////////
}
}
qsort(people,k,sizeof(People),compare); //将符合年龄条件的人排序 //////////////////////////////////////////////////////////////
for(i=0;i<k;i++){
printf("%s\n",people[i].name);
}
delete[] people;
return 0;
}
5
John 2001/05/12
Tom 1814/09/06
Ann 2121/01/30
James 1814/09/05
Steve 1967/11/20
John
Steve
Tom
|