题解 | #成绩排序#

成绩排序

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

//结构体是好东西啊
#include<iostream>
#include<algorithm>

using namespace std;

struct Student 
{
    int id;
    int score;
};
bool compare(Student x,Student y) 
{
    if(x.score==y.score) 
    {
        return x.id<y.id;
    } 
    else 
    {
        return x.score<y.score;
    }
}
int main() 
{
    Student stu[100];
    int n;
    while(scanf("%d",&n)!=EOF) 
    {
        for(int i=0; i<n; i++) 
        {
            scanf("%d %d",&stu[i].id,&stu[i].score);
        }
        sort(stu,stu+n,compare);
        for(int i=0; i<n; i++) 
        {
            printf("%d %d\n",stu[i].id,stu[i].score);
        }
    }
}
全部评论

相关推荐

喜欢走神的孤勇者练习时长两年半:爱华,信华,等华,黑华
点赞 评论 收藏
分享
3 收藏 评论
分享
牛客网
牛客企业服务