HUST-成绩排序

网友投稿 239 2022-08-29

HUST-成绩排序

题目链接

​​年龄 成绩学生姓名的字母序区分字母的大小写,如A要比a的字母序靠前(因为A的ASC码比a的ASC码要小)。

示例1

输入

复制

3abc 20 99bcd 19 97bed 20 97

输出

复制

bcd 19 97bed 20 97abc 20 99

题解:

#include #include #include using namespace std;struct stu{ int age; string name; int score;}buf[1000]; bool cmp(stu a, stu b){ if(a.score != b.score) return a.score < b.score; else{ if(a.name != b.name) return a.name < b.name; else return a.age < b.age; }}int main(){ int n; while(cin >> n){ for(int i = 0; i < n; i++){ cin >> buf[i].name >> buf[i].age >> buf[i].score; } sort(buf, buf + n, cmp); for(int i = 0; i < n; i++){ cout << buf[i].name << " " << buf[i].age << " " << buf[i].score << endl; } } return 0;}

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:营销年轻化是上汽大众与Z世代对话的敲门砖!(上汽大众的理念)
下一篇:LeetCode-235&236. Lowest Common Ancestor of a Binary Tree
相关文章

 发表评论

暂时没有评论,来抢沙发吧~