TMD,坑壁题目!! 摘要:注意事项: 不止一组输入!!不止一组输入!!! 也就是说输入其实是: 3 xxxx &nbs 题解列表 2023年08月10日 0 点赞 0 评论 440 浏览 评分:0.0
成绩排序-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>struct data{ char str[101]; …… 题解列表 2020年11月26日 0 点赞 0 评论 641 浏览 评分:0.0
朴实无华的解法,只要你懂结构体,冒泡排序,strcmp函数,就能看得懂。 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include<string.h>struct student{ char name[101]; int age; …… 题解列表 2021年04月02日 0 点赞 0 评论 722 浏览 评分:0.0
成绩排序(多多指教) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>typedef struct students{char name[101];int age;i…… 题解列表 2021年05月04日 0 点赞 0 评论 456 浏览 评分: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 评论 441 浏览 评分:0.0
编写题解 1739: 成绩排序 结构体 摘要:参考代码:#include<iostream> #include<string> #include<algorithm> #include<stdio.h> using namespace s…… 题解列表 2022年04月30日 0 点赞 0 评论 513 浏览 评分: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 评论 296 浏览 评分:0.0
成绩排序!! 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>struct student{ char name[101]; int x; int y;};int…… 题解列表 2022年12月21日 0 点赞 0 评论 238 浏览 评分:0.0