成绩排序——C语言 摘要://C语言融合部分c++头文件,提交格式为c++ #include<stdio.h> #include<string.h> #include<stdlib.h> struct S { ch…… 题解列表 2023年03月22日 0 点赞 0 评论 625 浏览 评分:0.0
成绩排序(用结构体来做) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> struct student { char name[20]; int…… 题解列表 2023年10月09日 0 点赞 0 评论 634 浏览 评分:0.0
c语言小白写法,用struct 摘要:解题思路:注意事项:参考代码:#include <stdio.h>typedef struct student{ int id; float score;} student;int mai…… 题解列表 2023年12月08日 0 点赞 1 评论 474 浏览 评分:0.0
题解 2918: 成绩排序 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int a; char b[20][20]; int c[20]…… 题解列表 2024年04月25日 1 点赞 0 评论 520 浏览 评分:0.0
无聊的星期六 摘要:#include<stdio.h> #include<stdlib.h> #include<string.h> typedef struct{ char name[20]; int c…… 题解列表 2024年05月25日 0 点赞 0 评论 383 浏览 评分:0.0
编写题解 2918: 成绩排序(sort) 摘要:解题思路:注意事项:参考代码:#include <iostream>#include<algorithm>using namespace std;// 定义学生结构体,包含姓名(字符数组形式,最多容纳…… 题解列表 2024年11月17日 0 点赞 0 评论 744 浏览 评分:0.0
编写题解 2918: 成绩排序 摘要:解题思路:输入-冒泡法-输出注意事项:字符串的比较不能直接大小写参考代码:#include<stdio.h>#include<string.h>typedef struct student{ c…… 题解列表 2022年10月22日 0 点赞 0 评论 806 浏览 评分:3.0
2918: 成绩排序 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> int main() { int n = 0, b[25] = {0}; …… 题解列表 2022年11月07日 0 点赞 0 评论 1173 浏览 评分:9.9
2918:成绩排序 ```c#include#includetypedefstructstudent{charname[25];intscore;}student;intmain(){intn=0,i=0,j=0;studentstu[20]={0};studenttemp;scanf("%d", 题解列表 2023年09月17日 0 点赞 0 评论 687 浏览 评分:9.9
编写题解 2918: 成绩排序 ```c#include#includestructStudent{charname[20];intscore;}students[20],temp_stu;intmain(){intnum,i,j;scanf("%d",&num);for(i=0;i 题解列表 2024年05月27日 0 点赞 0 评论 613 浏览 评分:9.9