题解 2902: 输出最高分数的学生姓名

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

输出最高分数的学生姓名

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#include<string.h>struct student{    int score;   ……

不用二维数组来解题

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; typedef struct st{ int g; char nam……

输出最高分数的学生姓名

摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct student{    int score;    char name[100];}a[1000];int main(){……

输出最高分数的学生姓名(java)

摘要:解题思路:注意事项:参考代码:package Fourteen;import java.util.Scanner;public class 输出最高分数的学生姓名 {    public static……