KY9 成绩排序

成绩排序

http://www.nowcoder.com/questionTerminal/3f27a0a5a59643a8abf0140b9a8cf1f7

#include<iostream>
#include<algorithm>
using namespace std;

struct Student{
    int no;
    int score;
};
bool compared(Student std1,Student std2){
    if(std1.score==std2.score)
        return std1.no<std2.no;
    return std1.score<std2.score;
};

int main(){
    Student student[100];
    int N;
    cin>>N;
    for(int i=0;i<N;i++){
        cin>>student[i].no>>student[i].score;
    };
    sort(student,student+N,compared);
    for(int i=0;i<N;i++){
        cout<<student[i].no<<' '<<student[i].score<<endl;
    }
}
全部评论

相关推荐

不愿透露姓名的神秘牛友
07-03 17:37
点赞 评论 收藏
分享
07-01 13:37
门头沟学院 Java
steelhead:不是你的问题,这是社会的问题。
点赞 评论 收藏
分享
07-07 12:47
门头沟学院 Java
码农索隆:竟然还真有卡体检报告的
点赞 评论 收藏
分享
评论
10
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务