谁考了第K名(java) 摘要:解题思路:注意事项:参考代码:package Fifteen;import java.util.Scanner;public class 谁考了第k名 { public static void …… 题解列表 2023年05月21日 0 点赞 0 评论 110 浏览 评分:9.9
编写题解 2916: 谁考了第k名 摘要:解题思路:输入*判断*输出注意事项:在修改m和m+1位置的时候要记得修改ID的顺序参考代码:#include<stdio.h> typedef struct student{ //构成结构 …… 题解列表 2022年10月22日 0 点赞 0 评论 763 浏览 评分:9.9
2916: 谁考了第k名 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;long long xh[10001],temp1;int m[10001];float sc…… 题解列表 2023年05月24日 0 点赞 0 评论 181 浏览 评分:9.9
谁考了第k名c++ 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; struct Student{ int id; double …… 题解列表 2022年11月02日 0 点赞 0 评论 193 浏览 评分:9.9
谁考了第k名 (Java代码) 摘要:import java.util.Arrays; import java.util.Comparator; import java.util.Scanner; class Stu{ …… 题解列表 2022年12月08日 0 点赞 0 评论 139 浏览 评分:9.9
pair来写容易很多 摘要:解题思路:pair第一个存学号第二个存成绩然后用bool来进行判断加上sort排序注意事项:参考代码:#include<iostream>#include<algorithm>using namesp…… 题解列表 2023年04月25日 0 点赞 0 评论 135 浏览 评分:9.9
不用sorted函数两层for 循环处理的 摘要:解题思路:先输入各种要求的值,之后利用冒泡排序得到元素的升序列表注意事项:参考代码:number,shu=map(int,input().split())lit=[]for i in range(nu…… 题解列表 2024年07月01日 0 点赞 1 评论 113 浏览 评分:9.9
谁考了第k名java 摘要:import java.util.Scanner;public class 谁考了第k名 { public static void main(String[] args) { Sc…… 题解列表 2023年05月20日 0 点赞 0 评论 80 浏览 评分:9.9
来一手冒泡练习 摘要:解题思路:注意事项:参考代码:#include <stdio.h>struct Student { int id; float score;};int main(){ int n,m; scanf("…… 题解列表 2023年03月15日 0 点赞 0 评论 240 浏览 评分:9.9
2916: 谁考了第k名 摘要:```cpp #include using namespace std; struct s { int xuehao; double chengji; }; int m…… 题解列表 2022年11月30日 0 点赞 0 评论 161 浏览 评分:9.9