2916: 谁考了第k名
摘要:```cpp
#include
using namespace std;
struct s
{
int xuehao;
double chengji;
};
int m……
pair来写容易很多
摘要:解题思路:pair第一个存学号第二个存成绩然后用bool来进行判断加上sort排序注意事项:参考代码:#include<iostream>#include<algorithm>using namesp……
2916: 谁考了第k名 (结构体+sort函数)
摘要:解题思路: 1.定义结构体 2.循环输入数据 3.sort排序 4.输出第k名注意事项:参考代码:#include <bits/stdc++.h>
using namespace std;
……
2916: 谁考了第k名
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;long long xh[10001],temp1;int m[10001];float sc……
谁考了第k名 C++
摘要:```cpp
#include
using namespace std;
// 定义学生结构体
struct Student {
int id; // 学号
……