题解 2916: 谁考了第k名

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

pair来写容易很多

摘要:解题思路:pair第一个存学号第二个存成绩然后用bool来进行判断加上sort排序注意事项:参考代码:#include<iostream>#include<algorithm>using namesp……

不用sorted函数两层for 循环处理的

摘要:解题思路:先输入各种要求的值,之后利用冒泡排序得到元素的升序列表注意事项:参考代码:number,shu=map(int,input().split())lit=[]for i in range(nu……

谁考了第k名java

摘要:import java.util.Scanner;public class 谁考了第k名 {    public static void main(String[] args) {        Sc……

编写题解 2916: 谁考了第k名

摘要:解题思路:输入*判断*输出注意事项:在修改m和m+1位置的时候要记得修改ID的顺序参考代码:#include<stdio.h>    typedef struct student{  //构成结构  ……

谁考了第k名c++

摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; struct Student{     int id;     double ……

谁考了第k名

摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args)  ……