成绩排序-题解(C++代码) 摘要:```cpp #include #include #include #include using namespace std; void charru_sort(int *a,int n…… 题解列表 2020年03月11日 0 点赞 2 评论 1214 浏览 评分:9.9
此题有个小坑 答案错误50的可以看过来 摘要:# MarkDown编辑器基本使用说明 **首先学习一个函数** /*原型:int strcmp(const char *s1, const char *s2); 头文件:#include …… 题解列表 2022年10月04日 0 点赞 2 评论 571 浏览 评分:9.9
成绩排序(答案错误只有50分的试试把name数组空间改为101) 摘要:参考代码: ```c #include #include struct student { char name[101];//字符串后面要有个空 int age; …… 题解列表 2023年11月15日 1 点赞 1 评论 342 浏览 评分:10.0
c代码记录之成绩排序--结构体 摘要:Mark: ```c int n = 10 ; int a[n]; // NO , 这种情况不被编译器允许 ``` ```c int n ; scanf(" %d "…… 题解列表 2024年01月03日 1 点赞 0 评论 572 浏览 评分:10.0