成绩排序-题解(C++代码)sort() 摘要:c++重写sort()中的比较函数 ```cpp #include #include #include using namespace std; struct student { ch…… 题解列表 2020年04月23日 0 点赞 0 评论 777 浏览 评分:9.9
1739: 成绩排序 摘要:```c 未使用qsort排序 ``` ```c #include #include #include struct Stu { char name[101];//注意不是10…… 题解列表 2023年04月30日 0 点赞 0 评论 223 浏览 评分:9.9
成绩排序—题解(C 语言代码)——坑以说明 摘要: 注意写这个题目的时候要注意名字相同时,对年龄排序,之前就是卡在这里卡了好些时间,还以为需要进行排序优化。 题目:https://www.dotcpp.com/oj/problem1739.h…… 题解列表 2021年10月03日 0 点赞 0 评论 440 浏览 评分:9.9
!!!!!有坑!!这题是多组一起输入!!!!用类和sort来解决问题 摘要:解题思路:这题是多重输入,题目没有明说,这个坑坑死人!!先定义一个类,存储数据,建立全部声明为公有,不然要多定义几个函数:默认构造函数,赋值函数和输出函数。通过自定义sort排序输出。注意事项:每次开…… 题解列表 2022年07月19日 0 点赞 0 评论 213 浏览 评分:9.9
1739: 成绩排序 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> struct stu{ char name[101]; int age;…… 题解列表 2022年08月04日 0 点赞 0 评论 260 浏览 评分:9.9
成绩排序-题解(C++代码) 摘要:```cpp #include #include #include #include using namespace std; void charru_sort(int *a,int n…… 题解列表 2020年03月11日 0 点赞 2 评论 661 浏览 评分:9.9
C++简便易懂,STL简便做法 摘要:###### 先注意,题目中说的将学生数据按成绩从低到高排序,如果成绩相同则按姓名字符的字母序依次排序,如果姓名的字母序也相同则按照学生的年龄从小到大排序,,都是从小到大的顺序排的。 ###### …… 题解列表 2023年02月13日 0 点赞 0 评论 187 浏览 评分:9.9
此题有个小坑 答案错误50的可以看过来 摘要:# MarkDown编辑器基本使用说明 **首先学习一个函数** /*原型:int strcmp(const char *s1, const char *s2); 头文件:#include …… 题解列表 2022年10月04日 0 点赞 2 评论 405 浏览 评分:9.9
成绩排序-题解(C语言代码) 摘要:# 答案一直错的看过来,有超详细的讲解 ## 代码虽长,但结构清晰,功能区分明显,容易理解,对这个题目有疑问的可以尝试着看看 ## 用到的知识点: 1、动态数组,当数组长度未知,需要用户输入数组…… 题解列表 2020年05月16日 0 点赞 2 评论 827 浏览 评分:9.9
成绩排序 (C++代码) 摘要:解题思路:使用C++的sort函数非常方便可以完成。主要是注意排序方法,所以要定义一个cmp函数。注意事项:参考代码:#include <stdio.h> #include <string.h> …… 题解列表 2018年09月08日 0 点赞 0 评论 970 浏览 评分:9.9