成绩排序-题解(C语言) 摘要:```c #include #include struct a{ char b[101]; int c; int d; }student[1000],temp; int main…… 题解列表 2021年09月11日 0 点赞 0 评论 229 浏览 评分:0.0
编写题解 1739: 成绩排序(有问题,求帮助) 摘要:都有问题,还没解决,暂时先记录 一: #include #include typedef struct student{ char name[200]; int age; …… 题解列表 2023年03月17日 0 点赞 0 评论 167 浏览 评分:0.0
1739: 成绩排序 摘要:结构体的排序,自己写一个 sort 函数的比较算法就好了。#include<bits/stdc++.h> using namespace std; struct student{ s…… 题解列表 2021年12月18日 0 点赞 0 评论 277 浏览 评分:0.0
成绩排序(水题) 摘要:```c #include #include struct stu{ char name[200]; int a,b; }; int main(){ struct …… 题解列表 2023年01月19日 0 点赞 0 评论 173 浏览 评分:0.0
编写题解 1739: 成绩排序 结构体 摘要:参考代码:#include<iostream> #include<string> #include<algorithm> #include<stdio.h> using namespace s…… 题解列表 2022年04月30日 0 点赞 0 评论 232 浏览 评分:0.0
成绩排序 题解 摘要:解题思路:这题就是结构体排序,先是成绩,再是姓名,但我们还要考虑年龄。呵呵,这是个坑。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;in…… 题解列表 2022年05月07日 0 点赞 0 评论 193 浏览 评分:0.0
成绩排序!! 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>struct student{ char name[101]; int x; int y;};int…… 题解列表 2022年12月21日 0 点赞 0 评论 106 浏览 评分:0.0
成绩排序c语言 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h> struct student{ char name[200]; int age; …… 题解列表 2022年12月12日 0 点赞 0 评论 146 浏览 评分:0.0
成绩排序(容器) 摘要:#include<iostream> using namespace std; #include<vector> #include<string> #include<algorithm> c…… 题解列表 2022年08月15日 0 点赞 0 评论 130 浏览 评分:0.0
成绩排序-题解(Java代码) 字符串问题的可以看过来! 摘要:import java.util.Scanner; class Main { public static void main(String[] args) { /** * …… 题解列表 2020年02月15日 0 点赞 0 评论 701 浏览 评分:0.0