谁拿了最多奖学金——C语言结构体 摘要:#include<stdio.h> #include<stdlib.h> struct S { char name[20]; int score; int total; char…… 题解列表 2023年03月22日 0 点赞 0 评论 113 浏览 评分:9.9
顺序查找之谁拿了最多奖学金 摘要:```c #include int main() { char name[100][21], ganbu[100], xibu[100]; int num, qimo[100], ban…… 题解列表 2023年01月19日 0 点赞 0 评论 235 浏览 评分:9.9
2904: 谁拿了最多奖学金 摘要:```cpp #include #include #include using namespace std; struct Stu { string name; int…… 题解列表 2023年01月05日 0 点赞 0 评论 130 浏览 评分:9.9
废物的结构体 摘要:解题思路:注意事项:参考代码#include<stdio.h>#include<string.h>struct jxj{ char name[20]; int grade; int ban; …… 题解列表 2022年12月10日 0 点赞 0 评论 246 浏览 评分:9.9
2904: 谁拿了最多奖学金(c++代码) 摘要:```cpp #include using namespace std; typedef struct Stu { string name; int g1; int g2; ch…… 题解列表 2022年11月06日 0 点赞 0 评论 241 浏览 评分:9.9
编写题解 2904: 谁拿了最多奖学金 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#include<string.h>struct student{ char name[20]…… 题解列表 2022年10月26日 0 点赞 0 评论 107 浏览 评分:0.0
编写题解 2904: 谁拿了最多奖学金 C 摘要:解题思路:输入-几个条件判断-输出注意事项:name在定义的时候,要注意字符串的长度,将其定义为一个二维数组参考代码:#include<stdio.h>#include<string.h>int ma…… 题解列表 2022年10月22日 0 点赞 0 评论 438 浏览 评分:9.9