利用sort进行结构体排序(简单易上手) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; typedef struct Geade{ int id,y,s,e,s…… 题解列表 2022年11月03日 0 点赞 0 评论 99 浏览 评分:0.0
2919: 奖学金 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;struct student{ int xh,zf,a,b,c;} s[1000…… 题解列表 2023年12月16日 0 点赞 0 评论 119 浏览 评分:0.0
2919: 奖学金 摘要:```cpp #include #include using namespace std; struct student { int id,Chinese,score; }stu…… 题解列表 2023年01月12日 0 点赞 0 评论 129 浏览 评分:9.9
2919: 奖学金 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h> using namespace std; struct u { int xh; int yv; …… 题解列表 2023年12月09日 0 点赞 0 评论 46 浏览 评分:9.9
2919: 奖学金(c++) 摘要:```cpp #include using namespace std; typedef struct Stu { int hao;//学号 int a;//语文成绩 int b;/…… 题解列表 2022年11月07日 0 点赞 0 评论 204 浏览 评分:9.9
奖学金——做题思路,优化,比较,反思 摘要:- 分析 > 想用三个数组,把他们存起来,然后 cmp sort 排序 - 第一次 WA ```c++ #include using namespace std…… 题解列表 2023年03月19日 0 点赞 0 评论 207 浏览 评分:9.9