花落的新手算法(C语言代码) 摘要:解题思路:学过结构体的就可以做啦,没什么难度。注意事项:参考代码:#include<stdio.h>#define AUM(x,y) {struct student t;t=x;x=y;y=t;}s…… 题解列表 2017年12月18日 0 点赞 0 评论 1672 浏览 评分:0.0
蓝桥杯算法训练VIP-学生成绩 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.ArrayList; import java.util.Collections; import java.util.Comparat…… 题解列表 2018年03月13日 0 点赞 0 评论 1820 浏览 评分:0.0
蓝桥杯算法训练VIP-学生成绩-题解(C语言代码) ```c#include#include#include#includetypedefstructstudent{charname[10];charf[10];intage;intgrade;}student;intmain(){studenta[1000];intn;scanf("%d", 题解列表 2019年11月28日 0 点赞 0 评论 1114 浏览 评分:0.0
蓝桥杯算法训练VIP-学生成绩-题解(C语言代码) #includeusingnamespacestd;intn;typedefstructstudent{stringa;stringb;intc;intd;}student;boolcmp(studenta,studentb){returna.d>n;stude 题解列表 2020年01月15日 0 点赞 0 评论 1263 浏览 评分:0.0
蓝桥杯算法训练VIP-学生成绩-题解(C语言代码) 建立一个成绩数组a[105],存放各个分数的人数。```c#pragmawarning(disable:4996)#include#include#include#includestructstudent{charname[25];intmark;intage;charmale[25];};voidp 题解列表 2020年02月04日 0 点赞 0 评论 1336 浏览 评分:0.0
学生成绩,1598 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ struct Student { char name[100]; char sex[100]; int a…… 题解列表 2022年06月21日 0 点赞 0 评论 552 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>struct student{ char name[21]; char sex[21];…… 题解列表 2023年06月29日 0 点赞 0 评论 506 浏览 评分:0.0
蓝桥杯算法训练VIP-学生成绩 C++ STL #stable_sort排序函数```c++#include#include#includeusingnamespacestd;intn;constintN=1000;structstu{stringname;//姓名stringgender;//性别intage;//年龄intgrades;//成绩 题解列表 2023年08月04日 0 点赞 0 评论 652 浏览 评分:0.0
简单易懂的解题思路 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>typedef struct cjd{ char name[25]; char xb[25]; …… 题解列表 2024年03月01日 0 点赞 0 评论 643 浏览 评分:6.0
蓝桥杯算法训练VIP-学生成绩-题解(C语言代码) 摘要:###思路 > ####使用冒泡排序排序,排序后顺序输出即可 ```c #include #include #include struct _Student{ char name…… 题解列表 2019年07月07日 0 点赞 0 评论 1384 浏览 评分:9.0