题解 1598: 蓝桥杯算法训练VIP-学生成绩 摘要:参考代码:import java.util.Scanner; class student{ String name; String sex; int age; int cheng…… 题解列表 2021年03月27日 0 点赞 0 评论 1046 浏览 评分:9.9
蓝桥杯算法训练VIP-学生成绩-题解(Python代码)(student 对象) 摘要:解题思路:注意事项:参考代码:class student: def __init__(self,name,sex,age,score): self.…… 题解列表 2020年08月01日 0 点赞 0 评论 1320 浏览 评分:9.9
蓝桥杯算法训练VIP-学生成绩-题解(C语言代码) 摘要:###思路 > ####使用冒泡排序排序,排序后顺序输出即可 ```c #include #include #include struct _Student{ char name…… 题解列表 2019年07月07日 0 点赞 0 评论 1384 浏览 评分:9.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#includetypedefstructstudent{charname[10];charf[10];intage;intgrade;}student;intmain(){studenta[1000];intn;scanf("%d", 题解列表 2019年11月28日 0 点赞 0 评论 1114 浏览 评分:0.0
花落的新手算法(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-学生成绩 C++ STL #stable_sort排序函数```c++#include#include#includeusingnamespacestd;intn;constintN=1000;structstu{stringname;//姓名stringgender;//性别intage;//年龄intgrades;//成绩 题解列表 2023年08月04日 0 点赞 0 评论 652 浏览 评分: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++代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> struct student { char name[20]; …… 题解列表 2018年02月11日 0 点赞 0 评论 1491 浏览 评分:0.0
1598学生成绩——JAVA详细代码注释小白向题解 摘要:解题思路:这是一道非常典型的对象排序问题。对学生类对象中的成绩属性按升序排序。我才用的是列表存放学生对象,使用Comparator重写排序方法进行成绩升序排序。注意事项:参考代码:import jav…… 题解列表 2023年03月07日 0 点赞 0 评论 835 浏览 评分:0.0