~~【Java】版本~~<Lambada>写法 摘要:解题思路:注意事项:参考代码:import java.util.*; public class Main { public static void main(String[] arg…… 题解列表 2024年02月21日 0 点赞 0 评论 49 浏览 评分:0.0
无聊的星期六 摘要:#include<stdio.h> #include<stdlib.h> #include<string.h> typedef struct{ long name; float che…… 题解列表 2024年05月25日 0 点赞 0 评论 94 浏览 评分:0.0
用VS来写结构体数组并排序 摘要:解题思路:注意事项:参考代码:#define _CRT_SECURE_NO_WARNINGS#include <stdio.h>#include <malloc.h>struct _node{ int…… 题解列表 2024年07月11日 0 点赞 0 评论 133 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>#define maxsize 100typedef struct{ double sco…… 题解列表 2023年09月30日 0 点赞 0 评论 135 浏览 评分:0.0
容易看懂c语言 摘要:解题思路:两个数据有联系,用结构体 ,用冒泡法排序注意事项:交换的中间变量要为相同的结构体类型参考代码:#include<stdio.h>#include<string.h>typedef struc…… 题解列表 2023年01月13日 0 点赞 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 评论 74 浏览 评分:0.0
谁考了第k名(C语言) 摘要:解题思路:注意事项:成绩交换后学号也需要交换参考代码:#include<stdio.h>int main(){ int n,k,a[101]; float score[101]; s…… 题解列表 2023年11月27日 0 点赞 0 评论 90 浏览 评分:0.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 评论 131 浏览 评分:0.0
2916: 谁考了第k名 (结构体+sort函数) 摘要:解题思路: 1.定义结构体 2.循环输入数据 3.sort排序 4.输出第k名注意事项:参考代码:#include <bits/stdc++.h> using namespace std; …… 题解列表 2023年05月23日 0 点赞 0 评论 107 浏览 评分:0.0
谁考了第K名 摘要:解题思路:注意事项:参考代码:public class Main { public static void main(String[] args) { Scanner sc =…… 题解列表 2023年06月06日 0 点赞 0 评论 193 浏览 评分:0.0