谁拿了最多奖学金(封装对象) 摘要:解题思路:先把学生的属性,封装在学生类中,然后再在测试类中简单编写题目要求注意事项:参考代码:import java.util.Scanner;public class Main { publi…… 题解列表 2023年11月19日 0 点赞 0 评论 258 浏览 评分:6.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 评论 102 浏览 评分:0.0
题解 2904: 谁拿了最多奖学金 摘要: #include using namespace std; const int N=110; char name[N][N],gb[N],xb[N]; …… 题解列表 2023年12月24日 0 点赞 0 评论 160 浏览 评分: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 评论 124 浏览 评分: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 评论 162 浏览 评分:0.0
如何用C语言结构体解决谁拿了最多奖学金 摘要:解题思路:用结构体代表学生的信息,通过函数得到每个学生的奖学金,在进行对比。注意事项:认真即可参考代码:#include <stdio.h>//定义结构体,totalbons是每个学生的奖学金。str…… 题解列表 2024年11月10日 0 点赞 0 评论 144 浏览 评分:0.0
C语言 结构体+主函数一维数组 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct Student{ char name[30] ; //名字 int average ; //平均分…… 题解列表 2024年12月05日 0 点赞 0 评论 155 浏览 评分:0.0