谁考了第k名 C++ 摘要:```cpp #include using namespace std; // 定义学生结构体 struct Student { int id; // 学号 …… 题解列表 2024年12月28日 0 点赞 0 评论 48 浏览 评分:0.0
2916: 谁考了第k名 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;long long xh[10001],temp1;int m[10001];float sc…… 题解列表 2023年05月24日 0 点赞 0 评论 177 浏览 评分:9.9
2916: 谁考了第k名 (结构体+sort函数) 摘要:解题思路: 1.定义结构体 2.循环输入数据 3.sort排序 4.输出第k名注意事项:参考代码:#include <bits/stdc++.h> using namespace std; …… 题解列表 2023年05月23日 0 点赞 0 评论 107 浏览 评分:0.0
pair来写容易很多 摘要:解题思路:pair第一个存学号第二个存成绩然后用bool来进行判断加上sort排序注意事项:参考代码:#include<iostream>#include<algorithm>using namesp…… 题解列表 2023年04月25日 0 点赞 0 评论 131 浏览 评分:9.9
2916: 谁考了第k名 摘要:```cpp #include using namespace std; struct s { int xuehao; double chengji; }; int m…… 题解列表 2022年11月30日 0 点赞 0 评论 159 浏览 评分:9.9
谁考了第k名c++ 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; struct Student{ int id; double …… 题解列表 2022年11月02日 0 点赞 0 评论 189 浏览 评分:9.9