zcmu——4935: 成绩排序

题目链接

【分析】

zcmu的wa为什么都是与不断输入有关的

找错找半天

以后还是不能直接看题解

#include
#include
#include
#include
#include
using namespace std;
#define maxn 1010
struct node{
    char name[110];
    int score;
    int age;
}Student[maxn];
bool cmp(node a,node b)
{
    if(a.score!=b.score)
        return a.score>Student[i].name;
        printf("%s %d %d\n",Student[i].name,Student[i].age,Student[i].score);
    }
    }
    return 0;
}

 

你可能感兴趣的:(OJ,排序)