文章
1
粉丝
26
获赞
0
访问
1.1k
我的代码如下 提交后数据通过率为66% 检查错误数据对比也没看到哪里有错
我自己看不出哪里有问题 请大佬帮忙看看~谢谢您
#include<stdlib.h>
#include<iostream>
#include<string.h>
using namespace std;
typedef struct student{
char name[20];
int score;
int number;
};
int cmp1(const void * a, const void* b)
{
student stu1 = *(student*)a;
student stu2 = *(student*)b;
if(stu1.score != stu2.score)
return stu2.score - stu1.score;
else
return stu1.number - stu2.number;
}
int cmp2(const void * a, const void* b)
{
student stu1 = *(student*)a;
student stu2 = *(student*)b;
if(stu1.score != stu2.score)
return stu1.score - stu2.score;
else
&...
登录后发布评论
题目说了多组测试数据输入
改为
while(cin >> n >> m)