题解 1739: 成绩排序

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

筛选

成绩排序c语言

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

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

摘要:解题思路:    结合结构体与数组              用swap函数替换 达成排序,这里是将小的值排到前面             有些许参考https://blog.dotcpp.com/a……

成绩排序(水题)

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