1004 成绩排名 (20 分)
//成绩排名
#include <stdio.h>
#include <stdlib.h>
typedef struct{
char name[15];
char num[15];
int score;
} Student;
int main(void)
{
int n,i,j;
scanf("%d",&n);
Student stu[n],temp;
for (i=0;i<n;i++)
scanf("%s%s%d",stu[i].name,stu[i].num,&stu[i].score);
for (i=1;i<n;i++)
for (j=0;j<n-i;j++)
if (stu[j].score>stu[j+1].score)
{
temp=stu[j];
stu[j]=stu[j+1];
stu[j+1]=temp;
}
printf("%s %s\n",stu[n-1].name,stu[n-1].num);
printf("%s %s\n",stu[0].name,stu[0].num);
system("pause");
return 0;
}