1106: 奖学金 (二维数组) 摘要:解题思路:将所有信息存放至二维数组并依据总分,语文成绩降序排序,依据学号升序排序注意事项:参考代码:def scholarship_ranking(): # 读取学生数量 n = int(…… 题解列表 2024年11月17日 0 点赞 0 评论 116 浏览 评分:0.0
1106: 奖学金 ——sort 摘要:解题思路:注意事项:sort() 函数用于对容器中的元素进行排序,而排序的规则则由一个比较函数来定义。这个比较函数通常会传入两个元素(在我们的例子中是学生对象),并返回一个布尔值定义了一个 compa…… 题解列表 2024年11月13日 0 点赞 0 评论 63 浏览 评分:0.0
使用qsort函数排序(c语言代码) 摘要:```c #include #include #include // 定义一个结构体 link 来存储学生的信息 typedef struct { int chinese…… 题解列表 2024年08月18日 0 点赞 0 评论 148 浏览 评分:9.9
奖学金:结构体多关键字排序 摘要:解题思路:注意事项:参考代码:#include <iostream> #include <algorithm> using namespace std; struct st{ int sn,…… 题解列表 2024年08月08日 0 点赞 0 评论 67 浏览 评分:0.0
1106奖学金(sort排序) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>using namespace std;//这里注意一下书写的顺序,不然也会出现调用上的错误st…… 题解列表 2024年06月07日 0 点赞 0 评论 104 浏览 评分:0.0
使用sort,lamba和二维列表,简单易懂 摘要:解题思路:注意事项:参考代码:# 读取输入n = int(input())students = [] # 学生列表,每个元素为一个列表:[学号, 语文成绩, 总成绩]for i in range(n…… 题解列表 2024年03月18日 0 点赞 0 评论 89 浏览 评分:0.0
1106: 奖学金(一个对象,多个数据,用结构体) 摘要:解题思路:结构体的应用注意事项:参考代码:#include<iostream>using namespace std;struct st{ int xh; int a,b,c; in…… 题解列表 2024年03月11日 0 点赞 0 评论 150 浏览 评分:9.9
直接使用sort方法o_O 摘要:解题思路:注意事项:参考代码:n=int(input())arr=[]for i in range(1,n+1): #输入 a=list(map(int,input().split())) …… 题解列表 2024年02月16日 0 点赞 0 评论 124 浏览 评分:9.9
奖学金(C语言易懂版) 摘要:解题思路:注意事项:注意题目要求,先比总成绩,在总成绩相同的情况下比较语文成绩,在语文成绩相同的情况下比较学号,学号小的排名在前。参考代码:#include <stdio.h>#include <st…… 题解列表 2024年01月30日 0 点赞 0 评论 270 浏览 评分:9.9
c语言代码解决问题快速排序 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>typedef struct student{ int id; int chinese; int m…… 题解列表 2023年10月06日 0 点赞 0 评论 92 浏览 评分:0.0