编写题解 2902: 输出最高分数的学生姓名 摘要:解题思路:输入*判断*输出注意事项:name二维参考代码:#include<stdio.h>#include<string.h>intmain(){ &…… 题解列表 2022年10月21日 0 点赞 0 评论 357 浏览 评分:2.0
输出最高分数的学生姓名 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#include<string.h>structstudent{…… 题解列表 2022年10月26日 0 点赞 0 评论 188 浏览 评分:0.0
不用二维数组来解题 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;typedef s…… 题解列表 2022年11月04日 0 点赞 0 评论 120 浏览 评分:0.0
2902: 输出最高分数的学生姓名 摘要:```cpp#includeusingnamespacestd;structstudent{intchengji;charname[20];};intmain(){intn;studentstudy[…… 题解列表 2023年01月05日 0 点赞 0 评论 297 浏览 评分:9.9
输出最高分数的学生姓名 摘要:解题思路:注意事项:参考代码:#include<stdio.h>structstudent{ intscore;  …… 题解列表 2023年01月12日 0 点赞 0 评论 101 浏览 评分:0.0
用指针输出最高分数的学生姓名 摘要:```c#includeintmain(){inta[100],num,max;charn[100][21];//定义字符串数组用于存放名字char(*p)[21]=NULL;//初始化指针数组sca…… 题解列表 2023年01月19日 0 点赞 0 评论 396 浏览 评分:9.9
利用二位数组做出 编写题解 2902: 输出最高分数的学生姓名 摘要:解题思路:注意事项:注意储存英文名时二维数组的用法参考代码:#include<stdio.h>intmain(){ ints,i,n,a[101];&…… 题解列表 2023年02月16日 0 点赞 0 评论 79 浏览 评分:0.0
编写题解 2902: 输出最高分数的学生姓名 摘要:解题思路:注意事项:参考代码:#include <stdio.h>typedef struct stu{ &…… 题解列表 2023年03月21日 0 点赞 0 评论 84 浏览 评分:0.0
2902: 输出最高分数的学生姓名 摘要:```cpp#includeusingnamespacestd;structxingming{//结构体,来储存分数和姓名intk;stringl;}a[1001];intn,maxn,maxl=10…… 题解列表 2023年03月24日 0 点赞 0 评论 193 浏览 评分:9.9
输出最高分数的学生姓名(java) 摘要:解题思路:注意事项:参考代码:packageFourteen;importjava.util.Scanner;publicclass输出最高分数的学生姓名{ pu…… 题解列表 2023年05月11日 0 点赞 0 评论 103 浏览 评分:9.9