谁考了第K名(java) 摘要:解题思路:注意事项:参考代码:package Fifteen;import java.util.Scanner;public class 谁考了第k名 { public static void …… 题解列表 2023年05月21日 0 点赞 0 评论 110 浏览 评分: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
输出第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
谁考了第k名C解 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,k,j,m; scanf("%d %d",&n,&k); int a[n+1],i…… 题解列表 2024年02月26日 1 点赞 0 评论 138 浏览 评分:0.0
谁考了第k名 摘要:解题思路:注意事项:参考代码:n,k=map(int,input().split())s=[]for i in range(n): a=tuple(map(eval,input().split(…… 题解列表 2023年06月10日 0 点赞 0 评论 79 浏览 评分:0.0
谁考了第k名 C++ 摘要:```cpp #include using namespace std; // 定义学生结构体 struct Student { int id; // 学号 …… 题解列表 2024年12月28日 0 点赞 0 评论 53 浏览 评分:0.0
谁考了第k名(这例子不明显,题意也不够明确,这是从大到小排序的,用二维数组做下) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int n,k; scanf("%d%d",&n,&k); double a[n][2];/…… 题解列表 2023年10月09日 0 点赞 0 评论 102 浏览 评分:0.0
容易看懂c语言 摘要:解题思路:两个数据有联系,用结构体 ,用冒泡法排序注意事项:交换的中间变量要为相同的结构体类型参考代码:#include<stdio.h>#include<string.h>typedef struc…… 题解列表 2023年01月13日 0 点赞 0 评论 148 浏览 评分:0.0
2916: 谁考了第k名 (结构体+sort函数) 摘要:解题思路: 1.定义结构体 2.循环输入数据 3.sort排序 4.输出第k名注意事项:参考代码:#include <bits/stdc++.h> using namespace std; …… 题解列表 2023年05月23日 0 点赞 0 评论 111 浏览 评分:0.0