成绩排序-题解(Java代码) 字符串问题的可以看过来! 摘要:import java.util.Scanner; class Main { public static void main(String[] args) { /** * …… 题解列表 2020年02月15日 0 点赞 0 评论 497 浏览 评分:0.0
成绩排序!! 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>struct student{ char name[101]; int x; int y;};int…… 题解列表 2022年12月21日 0 点赞 0 评论 50 浏览 评分:0.0
c代码记录之成绩排序 摘要:解题思路:注意事项:多组输入代码实现二级动态数组的内存分配及释放strcmp及strcpy函数参考代码:#include<stdio.h> #include<string.h> int main(…… 题解列表 2023年11月28日 0 点赞 0 评论 71 浏览 评分:0.0
成绩排序-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>struct data{ char str[101]; …… 题解列表 2020年11月26日 0 点赞 0 评论 283 浏览 评分:0.0
成绩排序 题解 摘要:解题思路:这题就是结构体排序,先是成绩,再是姓名,但我们还要考虑年龄。呵呵,这是个坑。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;in…… 题解列表 2022年05月07日 0 点赞 0 评论 107 浏览 评分:0.0
成绩排序-题解(C语言代码) 摘要:```cpp #include #include #include #include using namespace std; #define max 1000 struct stude…… 题解列表 2020年02月14日 0 点赞 0 评论 281 浏览 评分:0.0
50分怎么办? 摘要:输入问题。每次输入学生的信息,用一个直接读入即可。scanf("%s %d %d", &students[i].name, &students[i].age, &students[i].marks);…… 题解列表 2023年08月24日 0 点赞 0 评论 134 浏览 评分:0.0
编写题解 1739: 成绩排序 -java比较器 摘要:解题思路: 利用集合的sort进行排序(重写比较器)注意事项: 第一排序条件为成绩 其次姓名 最后年龄参考代码:import java.util.ArrayList; import java.uti…… 题解列表 2024年06月14日 0 点赞 0 评论 91 浏览 评分:0.0
朴实无华的解法,只要你懂结构体,冒泡排序,strcmp函数,就能看得懂。 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include<string.h>struct student{ char name[101]; int age; …… 题解列表 2021年04月02日 0 点赞 0 评论 190 浏览 评分:0.0
成绩排序-题解(C语言) 摘要:```c #include #include struct a{ char b[101]; int c; int d; }student[1000],temp; int main…… 题解列表 2021年09月11日 0 点赞 0 评论 160 浏览 评分:0.0