1004 成绩排名

Posted keep23456

tags:

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

水题。

#include"iostream"
#include"algorithm"
using namespace std;

struct Student {
    string name,id;
    int score;
};

int main() {
    int n;
    cin>>n;
    Student maxStu,minStu,temp;
    maxStu.score = -1;
    minStu.score = 101;
    for(int i = 0; i < n; ++i) {
        cin>>temp.name>>temp.id>>temp.score;
        if(maxStu.score  < temp.score) maxStu = temp;
        if(minStu.score > temp.score) minStu = temp;
    }
    cout<<maxStu.name<<" "<<maxStu.id<<endl;
    cout<<minStu.name<<" "<<minStu.id<<endl;
    return 0;
}

 

忘了结构体类型变量之间可以直接赋值。

 

以上是关于1004 成绩排名的主要内容,如果未能解决你的问题,请参考以下文章

PAT 乙级 水题 1004. 成绩排名 (20)

1004. 成绩排名 (20)

1004. 成绩排名 (20)

PAT 1004 成绩排名

PAT1004. 成绩排名 (20)

1004 成绩排名 未解决的问题