求助成绩排序的题 同样的测试用例,我在本地的输出是对的,但提交后就不对了 #include <iostream> #include <string> #include <algorithm> using namespace std; typedef struct { string name; int score; }student; bool cmp1(student a, student b) { return a.score > b.score; } bool cmp2(student a, student b) { return a.sc...