2916: 谁考了第k名
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;long long xh[10001],temp1;int m[10001];float sc……
2916: 谁考了第k名 (结构体+sort函数)
摘要:解题思路: 1.定义结构体 2.循环输入数据 3.sort排序 4.输出第k名注意事项:参考代码:#include <bits/stdc++.h>
using namespace std;
……
谁考了第K名(java)
摘要:解题思路:注意事项:参考代码:package Fifteen;import java.util.Scanner;public class 谁考了第k名 { public static void ……
谁考了第k名java
摘要:import java.util.Scanner;public class 谁考了第k名 { public static void main(String[] args) { Sc……
pair来写容易很多
摘要:解题思路:pair第一个存学号第二个存成绩然后用bool来进行判断加上sort排序注意事项:参考代码:#include<iostream>#include<algorithm>using namesp……
谁考了第K名(C语言)——输入时按分数排序再插入数组
摘要://使用C++文件,提交要用C++
#include#include#define N 500
struct S {
char sid[N];
double score;
};
int……
2916: 谁考了第k名(python)
摘要:解题思路:注意事项:参考代码:def KEY(x):
return float(x[1])
n,k = map(int,input().strip().split())
nu……