编写题解 2916: 谁考了第k名 摘要:解题思路:输入*判断*输出注意事项:在修改m和m+1位置的时候要记得修改ID的顺序参考代码:#include<stdio.h> typedef struct student{ //构成结构 …… 题解列表 2022年10月22日 0 点赞 0 评论 764 浏览 评分:9.9
2916: 谁考了第k名 摘要:解题思路:注意事项:参考代码://冒泡排序 #include <stdio.h> int main() { int n = 0, k = 0, a[105] = {0};//变量的声明…… 题解列表 2022年10月28日 0 点赞 0 评论 589 浏览 评分:9.7
谁考了第k名c++ 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; struct Student{ int id; double …… 题解列表 2022年11月02日 0 点赞 0 评论 193 浏览 评分: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
谁考了第k名 (Java代码) 摘要:import java.util.Arrays; import java.util.Comparator; import java.util.Scanner; class Stu{ …… 题解列表 2022年12月08日 0 点赞 0 评论 139 浏览 评分:9.9
容易看懂c语言 摘要:解题思路:两个数据有联系,用结构体 ,用冒泡法排序注意事项:交换的中间变量要为相同的结构体类型参考代码:#include<stdio.h>#include<string.h>typedef struc…… 题解列表 2023年01月13日 0 点赞 0 评论 148 浏览 评分:0.0
输出第n名的排序程序 摘要:```c #include int main() { int sum, rank, r[100] = { 0 }, num[100];//r[]数组存放排名,num[]数组存放学号 fl…… 题解列表 2023年01月20日 0 点赞 1 评论 259 浏览 评分:9.0
2916: 谁考了第k名(python) 摘要:解题思路:注意事项:参考代码:def KEY(x): return float(x[1]) n,k = map(int,input().strip().split()) nu…… 题解列表 2023年03月12日 0 点赞 0 评论 77 浏览 评分:9.0
来一手冒泡练习 摘要:解题思路:注意事项:参考代码:#include <stdio.h>struct Student { int id; float score;};int main(){ int n,m; scanf("…… 题解列表 2023年03月15日 0 点赞 0 评论 240 浏览 评分:9.9
谁考了第K名(C语言)——输入时按分数排序再插入数组 摘要://使用C++文件,提交要用C++ #include#include#define N 500 struct S { char sid[N]; double score; }; int…… 题解列表 2023年03月22日 0 点赞 0 评论 135 浏览 评分:0.0