1739: 成绩排序 摘要:结构体的排序,自己写一个 sort 函数的比较算法就好了。#include<bits/stdc++.h> using namespace std; struct student{ s…… 题解列表 2021年12月18日 0 点赞 0 评论 210 浏览 评分:0.0
优质题解 Hifipsysta-1739-成绩排序(C++代码)基于STL中sort函数的结构体排序 摘要:#### 基本思路: ① 建立student结构体类型的数组stu[1001]存储学生姓名、年龄和成绩,按照题目要求长度为1000。 ② 设置排序规则,按照题目要求是先按成绩从小到大排,成绩相等则…… 题解列表 2022年02月07日 0 点赞 1 评论 724 浏览 评分:9.2
编写题解 1739: 成绩排序 结构体 摘要:参考代码:#include<iostream> #include<string> #include<algorithm> #include<stdio.h> using namespace s…… 题解列表 2022年04月30日 0 点赞 0 评论 176 浏览 评分:0.0
成绩排序 题解 摘要:解题思路:这题就是结构体排序,先是成绩,再是姓名,但我们还要考虑年龄。呵呵,这是个坑。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;in…… 题解列表 2022年05月07日 0 点赞 0 评论 108 浏览 评分:0.0
成绩排序 (Java代码)- 年龄也要排序啊 摘要:import java.util.Scanner; class student{ String name; int age; int score; } public class…… 题解列表 2022年05月15日 0 点赞 0 评论 250 浏览 评分:9.9
对矩阵二维数组还是不是很熟悉啊 摘要:解题思路:注意事项:折腾了这么久,不懈题解对不起自己看时间一道题也高了快一个小时了参考代码:##while True:## n=int(input())## lh=[]## for …… 题解列表 2022年05月27日 0 点赞 0 评论 180 浏览 评分:2.0
!!!!!有坑!!这题是多组一起输入!!!!用类和sort来解决问题 摘要:解题思路:这题是多重输入,题目没有明说,这个坑坑死人!!先定义一个类,存储数据,建立全部声明为公有,不然要多定义几个函数:默认构造函数,赋值函数和输出函数。通过自定义sort排序输出。注意事项:每次开…… 题解列表 2022年07月19日 0 点赞 0 评论 213 浏览 评分:9.9
成绩排序(C语言) 摘要: #include #include struct student{ char name[200]; int age; …… 题解列表 2022年07月25日 0 点赞 0 评论 320 浏览 评分:9.9
1739: 成绩排序 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> struct stu{ char name[101]; int age;…… 题解列表 2022年08月04日 0 点赞 0 评论 260 浏览 评分:9.9
成绩排序(容器) 摘要:#include<iostream> using namespace std; #include<vector> #include<string> #include<algorithm> c…… 题解列表 2022年08月15日 0 点赞 0 评论 73 浏览 评分:0.0