文章
9
粉丝
101
获赞
0
访问
5.4k
#include<bits/stdc++.h>
using namespace std;
struct Student{
int id;
char name[5000];
int score;
};
int cmp1(Student a,Student b){
return a.id<b.id;
}
int cmp2(Student a,Student b){
if(a.name==b.name)return a.id<b.id;
return a.name<b.name;
}
int cmp3(Student a,Student b){
if(a.score==b.score)return a.id<b.id;
return a.score<b.score;
}
int main(){
int n,c;
Student *stu;
while (cin>>n>>c){
if(n==0)break;
stu=new Student[n];
for(int i=0;i<n;i++){
cin>>stu...
登录后发布评论
请教一下,我这个为啥也是只有75%啊?
char数组的字符串不能直接比大小,string类型才能直接比,这个要用strcmp函数