码迷,mamicode.com
首页 > 其他好文 > 详细

oj---九度oj---1061

时间:2017-06-21 21:05:38      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:logs   main   struct   har   names   pac   scanf   space   string   

 

#include<cstdio>
#include<algorithm>
#include<cstring>
using namespace std;
struct Student{
    char name[105];
    int grade;
    int age;
}student[1005];

bool cmp(Student a,Student b){
    if(a.grade==b.grade){
        if(strcmp(a.name,b.name)==0)
            return a.age<b.age;
        else return strcmp(a.name,b.name)<0;
    }
    else return a.grade<b.grade;
}
int main(){
    int n;
    while(scanf("%d",&n)!=EOF){
        for(int i=0;i<n;i++){
            scanf("%s %d %d",student[i].name,&student[i].age,&student[i].grade);
        }
        sort(student,student+n,cmp);
        for(int i=0;i<n;i++)
            printf("%s %d %d\n",student[i].name,student[i].age,student[i].grade);        
    }    
    return 0;
}

 

oj---九度oj---1061

标签:logs   main   struct   har   names   pac   scanf   space   string   

原文地址:http://www.cnblogs.com/kprac/p/7061452.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!