1106: 奖学金 (二维数组) 摘要:解题思路:将所有信息存放至二维数组并依据总分,语文成绩降序排序,依据学号升序排序注意事项:参考代码:def scholarship_ranking(): # 读取学生数量 n = int(…… 题解列表 2024年11月17日 0 点赞 0 评论 170 浏览 评分:0.0
可以用结构体编写 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct garde { int sum; int xuehao;};int main(){int arr[1000] = { 0 …… 题解列表 2023年04月30日 0 点赞 0 评论 105 浏览 评分:0.0
奖学金 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <cstdio>int main(){ int n; scanf("%d",&n); int i[305],j[305],k[305]…… 题解列表 2017年08月28日 10 点赞 0 评论 2215 浏览 评分:0.0
运用python字典解题 摘要:解题思路:题目有干扰,要逆序思考,先按序号升序排列,再按语文成绩降序排列,最后再按总分降序排列注意事项:参考代码:n=eval(input())a=[]score=[]stu={}for i in r…… 题解列表 2021年10月18日 0 点赞 0 评论 227 浏览 评分:0.0
使用sort,lamba和二维列表,简单易懂 摘要:解题思路:注意事项:参考代码:# 读取输入n = int(input())students = [] # 学生列表,每个元素为一个列表:[学号, 语文成绩, 总成绩]for i in range(n…… 题解列表 2024年03月18日 0 点赞 0 评论 99 浏览 评分:0.0
编写题解 1106: 奖学金 摘要:解题思路:结构体由总分,学号,语数英三部分组成,然后按照代码所示的嵌套条件进行排序。注意事项:参考代码:#include<stdio.h>typedef struct Student{ int num…… 题解列表 2022年03月12日 0 点赞 0 评论 153 浏览 评分:0.0
奖学金:结构体多关键字排序 摘要:解题思路:注意事项:参考代码:#include <iostream> #include <algorithm> using namespace std; struct st{ int sn,…… 题解列表 2024年08月08日 0 点赞 0 评论 84 浏览 评分:0.0
奖学金 (C++代码) 摘要:整理学习:方式一: 自定义 cmp() 比较函数#include<cstdio> #include<algorithm> using namespace std; struct Stu…… 题解列表 2019年01月09日 0 点赞 0 评论 572 浏览 评分:0.0
用内置函数解决问题 摘要:解题思路:将每个人学生的总成绩和学号用zip函数打包,可以实现学号和成绩的动态排序。用sort函数以及reverse函数先按总分大小进行排序,再来考虑总分相同的情况。注意事项:参考代码: n=int(…… 题解列表 2022年05月19日 0 点赞 0 评论 193 浏览 评分:0.0
奖学金-题解(C语言代码) 摘要:排名前五的学生可以获得奖学金,先比较总分、比较语文分数、比较学号;输出前五个人的学号和总分。 #include typedef struct //定义学生信息结构体,存储学号、成绩…… 题解列表 2020年04月07日 0 点赞 0 评论 515 浏览 评分:0.0