使用qsort函数排序,直接找到最大值 摘要:不懂qsort函数用法的看这里[C语言qsort函数的使用详解](https://blog.csdn.net/weixin_47648037/article/details/126691309?ops…… 题解列表 2024年08月09日 0 点赞 0 评论 43 浏览 评分:0.0
2797: 最高的分数(详细注释) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { int n, score, max; //n,表示n个学生,score,每…… 题解列表 2024年12月20日 1 点赞 0 评论 212 浏览 评分:0.0
2797: 最高的分数 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int n,max=0; int ar…… 题解列表 2023年11月15日 0 点赞 0 评论 67 浏览 评分:0.0
循环嵌套求最大 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {…… 题解列表 2024年03月07日 0 点赞 0 评论 109 浏览 评分:0.0
最高的分数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int n,maxx=0,a; cin>>n;…… 题解列表 2023年07月01日 0 点赞 0 评论 72 浏览 评分:0.0
最高的分数(最简单版) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,max=0; scanf("%d",&a); for(int i=0;i<a;…… 题解列表 2023年11月27日 0 点赞 0 评论 93 浏览 评分:0.0
三行简便 编写题解 2797: 最高的分数 摘要:解题思路:map;list;max注意事项:仔细检查中英文符号参考代码:n=int(input())a=list(map(int,input().split()))print(max(a))…… 题解列表 2024年04月04日 0 点赞 0 评论 150 浏览 评分:0.0
题解 2797: 最高的分数(c++) 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int b; cin>>b; int m…… 题解列表 2024年01月09日 0 点赞 0 评论 47 浏览 评分:0.0