编写题解 2902: 输出最高分数的学生姓名 摘要:解题思路:输入*判断*输出注意事项:name二维参考代码:#include<stdio.h>#include<string.h>int main(){ int s,i,n,a[101]; …… 题解列表 2022年10月21日 0 点赞 0 评论 378 浏览 评分:2.0
输出最高分数的学生姓名 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#include<string.h>struct student{ int score; …… 题解列表 2022年10月26日 0 点赞 0 评论 199 浏览 评分:0.0
不用二维数组来解题 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; typedef struct st{ int g; char nam…… 题解列表 2022年11月04日 0 点赞 0 评论 130 浏览 评分:0.0
2902: 输出最高分数的学生姓名 摘要:```cpp #include using namespace std; struct student { int chengji; char name[20]; }; …… 题解列表 2023年01月05日 0 点赞 0 评论 306 浏览 评分:9.9
输出最高分数的学生姓名 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct student{ int score; char name[100];}a[1000];int main(){…… 题解列表 2023年01月12日 0 点赞 0 评论 114 浏览 评分:0.0
用指针输出最高分数的学生姓名 摘要:```c #include int main() { int a[100], num, max; char n[100][21]; //定义字符串数组 用于存放名字 char(*p)…… 题解列表 2023年01月19日 0 点赞 0 评论 407 浏览 评分:9.9
利用二位数组做出 编写题解 2902: 输出最高分数的学生姓名 摘要:解题思路:注意事项:注意储存英文名时二维数组的用法参考代码:#include<stdio.h>int main(){ int s,i,n,a[101]; char name[101][30…… 题解列表 2023年02月16日 0 点赞 0 评论 94 浏览 评分:0.0
编写题解 2902: 输出最高分数的学生姓名 摘要:解题思路:注意事项:参考代码:#include <stdio.h> typedef struct stu{ char name[20]; int sroue; }temp; in…… 题解列表 2023年03月21日 0 点赞 0 评论 93 浏览 评分:0.0
2902: 输出最高分数的学生姓名 摘要:```cpp #include using namespace std; struct xingming{//结构体,来储存分数和姓名 int k; string l; }…… 题解列表 2023年03月24日 0 点赞 0 评论 209 浏览 评分:9.9
输出最高分数的学生姓名(java) 摘要:解题思路:注意事项:参考代码:package Fourteen;import java.util.Scanner;public class 输出最高分数的学生姓名 { public static…… 题解列表 2023年05月11日 0 点赞 0 评论 122 浏览 评分:9.9