oj---pat---b1004

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oj---pat---b1004相关的知识,希望对你有一定的参考价值。

 

#include<cstdio>
#include<algorithm>
using namespace std;
struct student{
    char name[11];
    char id[20];
    int grade;
}stu[1000];
bool cmp(student a,student b){
    return a.grade>b.grade;
}
int main(){
    int n;
    while(scanf("%d",&n)!=EOF){
        for(int i =0;i<n;i++){
            scanf("%s %s %d",stu[i].name,stu[i].id,&stu[i].grade);
        }
        sort(stu,stu+n,cmp);
        printf("%s %s\n",stu[0].name,stu[0].id);
        printf("%s %s",stu[n-1].name,stu[n-1].id);
    }
    return 0;
}

 

以上是关于oj---pat---b1004的主要内容,如果未能解决你的问题,请参考以下文章

oj---pat---b1015

oj---pat---b1016

oj---pat--b1020

oj--pat--b1007

oj--pat---b1010

oj---pat---b1008