">#include<string.h> typedef struct student{ char number[1000]; char name[20]; char sex[10]; int age; }student; int main(){ int N; scanf("%d", &N); struct student stu[N]; for(int i=0; i<N; i++){ scanf("%s %s %s %d", &stu[i].number, &st...