题解 1739: 成绩排序

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

筛选

50分怎么办?

摘要:输入问题。每次输入学生的信息,用一个直接读入即可。scanf("%s %d %d", &students[i].name, &students[i].age, &students[i].marks);……

TMD,坑壁题目!!

摘要:注意事项: 不止一组输入!!不止一组输入!!!                也就是说输入其实是:                 3                xxxx      &nbs

1739: 成绩排序

摘要:```c 未使用qsort排序 ``` ```c #include #include #include struct Stu { char name[101];//注意不是10……

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

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

1739: 成绩排序

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

成绩排序(水题)

摘要:```c #include #include struct stu{ char name[200]; int a,b; }; int main(){ struct ……

成绩排序!!

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>struct student{ char name[101]; int x; int y;};int……

成绩排序c语言

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h> struct student{    char name[200];    int age; ……