题解 1739: 成绩排序

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

C++简便易懂,STL简便做法

摘要:###### 先注意,题目中说的将学生数据按成绩从低到高排序,如果成绩相同则按姓名字符的字母序依次排序,如果姓名的字母序也相同则按照学生的年龄从小到大排序,,都是从小到大的顺序排的。 ###### ……

1739: 成绩排序

摘要:```csharp #include #include #include using namespace std; class Student { public: ……

成绩排序-题解(C++代码)

摘要:解题思路:直接使用sort() , 主要在写比较函数cmp ,这个函数有套路注意事项:参考代码:#include <bits/stdc++.h>using namespace std ;struct ……

成绩排序-题解(C++代码)

摘要:解题思路:排序注意事项:1:均是从小到大排序2:多组输入参考代码:#include<iostream>using namespace std;#include<algorithm>#include<c……

成绩排序 (C++代码)

摘要:#include<iostream> #include<algorithm> #include<cstring> using namespace std; struct stu { ch……