找出最高高分数的学生姓名 摘要:解题思路:注意事项:参考代码:public class Main { public static void main(String[] args) { Scanner sc = n…… 题解列表 2023年05月21日 0 点赞 0 评论 158 浏览 评分:0.0
利用二位数组做出 编写题解 2902: 输出最高分数的学生姓名 摘要:解题思路:注意事项:注意储存英文名时二维数组的用法参考代码:#include<stdio.h>int main(){ int s,i,n,a[101]; char name[101][30…… 题解列表 2023年02月16日 0 点赞 0 评论 94 浏览 评分:0.0
输出最高分数的学生姓名 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#include<string.h>struct student{ int score; …… 题解列表 2022年10月26日 0 点赞 0 评论 199 浏览 评分:0.0
python--study||O.o 摘要:参考代码: def main(): n = int(input()) t = dict() mx = -1 for i in range(n): &nb 题解列表 2024年09月02日 0 点赞 0 评论 55 浏览 评分:0.0
输出最高分数的学生姓名 摘要:解题思路:注意事项:参考代码:n=int(input())a=[]for i in range(n): i=tuple(input().split()) a.append(i)a=sort…… 题解列表 2023年06月10日 0 点赞 0 评论 145 浏览 评分:0.0
输出最高分数的学生姓名 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,i; scanf("%d",&n); int a[100]; char b[…… 题解列表 2024年11月30日 0 点赞 0 评论 100 浏览 评分: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:输出最高分数的学生姓名 python实现(极简方法) 摘要:解题思路:本来想保存最大值,然后找对应的名字,后面发现找到最大值的时候可以直接用student保存学生的名字,最后直接输出该名字即可。注意事项:没有用到字典。参考代码:n = int(input())…… 题解列表 2023年12月06日 0 点赞 0 评论 135 浏览 评分:0.0
不用二维数组来解题 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; typedef struct st{ int g; char nam…… 题解列表 2022年11月04日 0 点赞 0 评论 130 浏览 评分:0.0