题解 2904: 谁拿了最多奖学金 摘要: #include using namespace std; const int N=110; char name[N][N],gb[N],xb[N]; …… 题解列表 2023年12月24日 0 点赞 0 评论 126 浏览 评分:0.0
2904: 谁拿了最多奖学金 摘要:``` #include using namespace std; const int N=110; char name[N][N],gb[N],xb[N]; //gb 干部 xb…… 题解列表 2023年12月24日 0 点赞 0 评论 109 浏览 评分:0.0
编写题解 2904: 谁拿了最多奖学金 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#include<string.h>struct student{ char name[20]…… 题解列表 2022年10月26日 0 点赞 0 评论 108 浏览 评分:0.0
C语言 结构体+主函数一维数组 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct Student{ char name[30] ; //名字 int average ; //平均分…… 题解列表 2024年12月05日 0 点赞 0 评论 112 浏览 评分:0.0
谁拿了最多奖学金(用结构体解题) 摘要:解题思路:看到题目有这么多的属性,说明结构体解题更容易些注意事项:参考代码:#include<stdio.h> #include<string.h> struct student { …… 题解列表 2023年10月13日 0 点赞 0 评论 79 浏览 评分:0.0
2904: 谁拿了最多奖学金 摘要: #include using namespace std; const int N=110; int g[N],c[N],r[N],sum[N],num=0,t=…… 题解列表 2023年12月20日 0 点赞 0 评论 65 浏览 评分:0.0
2904: 谁拿了最多奖学金 摘要:```#include using namespace std; const int N=110; char name[N][N],cadre[N],west[N]; int a[N],b[N…… 题解列表 2023年12月24日 0 点赞 0 评论 70 浏览 评分:0.0
如何用C语言结构体解决谁拿了最多奖学金 摘要:解题思路:用结构体代表学生的信息,通过函数得到每个学生的奖学金,在进行对比。注意事项:认真即可参考代码:#include <stdio.h>//定义结构体,totalbons是每个学生的奖学金。str…… 题解列表 2024年11月10日 0 点赞 0 评论 98 浏览 评分:0.0
题解 2904: 谁拿了最多奖学金 摘要:解题思路:1.对题目需求进行逐条分析2.将题目拆解为一个个可实现的小点,根据分析调用知识点,思考如何灵活运用相应的方法3.写出大概代码后,将进行详细调优(化繁为简,先死后活)注意事项:1.注意全局变量…… 题解列表 2023年08月28日 0 点赞 0 评论 167 浏览 评分:3.6
谁拿了最多奖学金(封装对象) 摘要:解题思路:先把学生的属性,封装在学生类中,然后再在测试类中简单编写题目要求注意事项:参考代码:import java.util.Scanner;public class Main { publi…… 题解列表 2023年11月19日 0 点赞 0 评论 198 浏览 评分:6.0