编写题解 2904: 谁拿了最多奖学金 C 摘要:解题思路:输入-几个条件判断-输出注意事项:name在定义的时候,要注意字符串的长度,将其定义为一个二维数组参考代码:#include<stdio.h>#include<string.h>int ma…… 题解列表 2022年10月22日 0 点赞 0 评论 471 浏览 评分:9.9
编写题解 2904: 谁拿了最多奖学金 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#include<string.h>struct student{ char name[20]…… 题解列表 2022年10月26日 0 点赞 0 评论 127 浏览 评分:0.0
2904: 谁拿了最多奖学金(c++代码) 摘要:```cpp #include using namespace std; typedef struct Stu { string name; int g1; int g2; ch…… 题解列表 2022年11月06日 0 点赞 0 评论 280 浏览 评分:9.9
废物的结构体 摘要:解题思路:注意事项:参考代码#include<stdio.h>#include<string.h>struct jxj{ char name[20]; int grade; int ban; …… 题解列表 2022年12月10日 0 点赞 0 评论 278 浏览 评分:9.9
2904: 谁拿了最多奖学金 摘要:```cpp #include #include #include using namespace std; struct Stu { string name; int…… 题解列表 2023年01月05日 0 点赞 0 评论 185 浏览 评分:9.9
顺序查找之谁拿了最多奖学金 摘要:```c #include int main() { char name[100][21], ganbu[100], xibu[100]; int num, qimo[100], ban…… 题解列表 2023年01月19日 0 点赞 0 评论 270 浏览 评分:9.9
谁拿了最多奖学金——C语言结构体 摘要:#include<stdio.h> #include<stdlib.h> struct S { char name[20]; int score; int total; char…… 题解列表 2023年03月22日 0 点赞 0 评论 147 浏览 评分:9.9
优质题解 谁拿了最多奖学金(C++代码解析和题解) 摘要: 代码解析: 首先,定义了一个 Student 结构体,用来存储学生的相关信息,包括姓名、平均成绩、测评成绩、是否担任干部、是否来自西部地区…… 题解列表 2023年07月17日 0 点赞 0 评论 392 浏览 评分:9.9
题解 2904: 谁拿了最多奖学金 摘要:解题思路:1.对题目需求进行逐条分析2.将题目拆解为一个个可实现的小点,根据分析调用知识点,思考如何灵活运用相应的方法3.写出大概代码后,将进行详细调优(化繁为简,先死后活)注意事项:1.注意全局变量…… 题解列表 2023年08月28日 0 点赞 0 评论 214 浏览 评分:3.6
谁拿了最多奖学金(用结构体解题) 摘要:解题思路:看到题目有这么多的属性,说明结构体解题更容易些注意事项:参考代码:#include<stdio.h> #include<string.h> struct student { …… 题解列表 2023年10月13日 0 点赞 0 评论 104 浏览 评分:0.0