2797: 最高的分数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int maxx = 0; int n; ci…… 题解列表 2024年01月09日 0 点赞 0 评论 53 浏览 评分:0.0
2797: 最高的分数 摘要:解题思路:注意事项:参考代码:#includeusing namespace std;int main(){int n,b,a=0;cin>>n;for(int i=1;i<=n;i++){cin>>…… 题解列表 2024年01月09日 0 点赞 1 评论 123 浏览 评分:9.9
题解 2797 最高的分数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int maxx=0 , n; cin>>n…… 题解列表 2024年01月10日 0 点赞 0 评论 116 浏览 评分:9.9
最高的分数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ short number, max_score = 0; short *p; scanf("%hd…… 题解列表 2024年01月11日 0 点赞 0 评论 71 浏览 评分:0.0
循环嵌套求最大 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {…… 题解列表 2024年03月07日 0 点赞 0 评论 109 浏览 评分:0.0
python 编写题解 2797: 最高的分数 摘要:参考代码:n = int(input()) grade = map(int, input().split()) print(max(grade))…… 题解列表 2024年03月11日 0 点赞 0 评论 130 浏览 评分:0.0
三行简便 编写题解 2797: 最高的分数 摘要:解题思路:map;list;max注意事项:仔细检查中英文符号参考代码:n=int(input())a=list(map(int,input().split()))print(max(a))…… 题解列表 2024年04月04日 0 点赞 0 评论 151 浏览 评分:0.0
编写题解 2797: 最高的分数 摘要:解题思路:注意事项:参考代码:#includeusing namespace std;int main(){ int n,maxx=0; cin>>n; for(int i=1;i<…… 题解列表 2024年06月16日 0 点赞 0 评论 100 浏览 评分:9.9
最高的分数 摘要:解题思路:注意事项:参考代码:n = int(input())l = list(input().split())t = [int(i) for i in l]print(max(t))…… 题解列表 2024年07月29日 0 点赞 0 评论 75 浏览 评分:0.0
使用qsort函数排序,直接找到最大值 摘要:不懂qsort函数用法的看这里[C语言qsort函数的使用详解](https://blog.csdn.net/weixin_47648037/article/details/126691309?ops…… 题解列表 2024年08月09日 0 点赞 0 评论 44 浏览 评分:0.0