编写题解 1739: 成绩排序 结构体 摘要:参考代码:#include<iostream> #include<string> #include<algorithm> #include<stdio.h> using namespace s…… 题解列表 2022年04月30日 0 点赞 0 评论 512 浏览 评分:0.0
成绩排序 题解 摘要:解题思路:这题就是结构体排序,先是成绩,再是姓名,但我们还要考虑年龄。呵呵,这是个坑。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;in…… 题解列表 2022年05月07日 0 点赞 0 评论 369 浏览 评分:0.0
成绩排序(容器) 摘要:#include<iostream> using namespace std; #include<vector> #include<string> #include<algorithm> c…… 题解列表 2022年08月15日 0 点赞 0 评论 390 浏览 评分:0.0
成绩排序c语言 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h> struct student{ char name[200]; int age; …… 题解列表 2022年12月12日 0 点赞 0 评论 295 浏览 评分:0.0