编写题解 1598: 蓝桥杯算法训练VIP-学生成绩 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<string> #include<algorithm> #include<vector> using na…… 题解列表 2022年05月20日 0 点赞 0 评论 101 浏览 评分:0.0
学生成绩,1598 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ struct Student { char name[100]; char sex[100]; int a…… 题解列表 2022年06月21日 0 点赞 0 评论 140 浏览 评分:0.0
学生成绩(C语言) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ typedef struct student{ char name[20]…… 题解列表 2022年07月17日 0 点赞 0 评论 124 浏览 评分:9.9
1598学生成绩——JAVA详细代码注释小白向题解 摘要:解题思路:这是一道非常典型的对象排序问题。对学生类对象中的成绩属性按升序排序。我才用的是列表存放学生对象,使用Comparator重写排序方法进行成绩升序排序。注意事项:参考代码:import jav…… 题解列表 2023年03月07日 0 点赞 0 评论 76 浏览 评分:0.0
蓝桥杯算法训练VIP-学生成绩(c语言) 摘要:```c #include #include typedef struct student { char name[20]; char sex[7]; int age; int…… 题解列表 2023年04月20日 0 点赞 0 评论 182 浏览 评分:9.9
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>struct student{ char name[21]; char sex[21];…… 题解列表 2023年06月29日 0 点赞 0 评论 56 浏览 评分:0.0
蓝桥杯算法训练VIP-学生成绩 C++ STL 摘要:# stable_sort 排序函数 ```c++ #include #include #include using namespace std; int n; const int N …… 题解列表 2023年08月04日 0 点赞 0 评论 105 浏览 评分:0.0
简单易懂的解题思路 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>typedef struct cjd{ char name[25]; char xb[25]; …… 题解列表 2024年03月01日 0 点赞 0 评论 94 浏览 评分:0.0