2902: 输出最高分数的学生姓名 摘要:```cpp #include using namespace std; struct xingming{//结构体,来储存分数和姓名 int k; string l; }…… 题解列表 2023年03月24日 0 点赞 0 评论 209 浏览 评分:9.9
2902: 输出最高分数的学生姓名 摘要:```cpp #include using namespace std; struct student { int chengji; char name[20]; }; …… 题解列表 2023年01月05日 0 点赞 0 评论 306 浏览 评分:9.9
不用二维数组来解题 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; typedef struct st{ int g; char nam…… 题解列表 2022年11月04日 0 点赞 0 评论 131 浏览 评分:0.0