题解 2797: 最高的分数(c++) 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int b; cin>>b; int m…… 题解列表 2024年01月09日 0 点赞 0 评论 44 浏览 评分:0.0
感谢支持,谢谢你们的支持 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int n,cj,maxx=0;; cin>>…… 题解列表 2023年07月01日 0 点赞 0 评论 94 浏览 评分:0.0
最高的分数 for循环与if语句(以下为我复习所用 摘要:解题思路:代码有注释注意事项:题目描述孙老师讲授的《计算概论》这门课期中考试刚刚结束,他想知道考试中取得的最高分数。因为人数比较多,他觉得这件事情交给计算机来做比较方便。你能帮孙老师解决这个问题吗?输…… 题解列表 2024年11月04日 0 点赞 0 评论 73 浏览 评分:0.0
最高的分数 摘要:解题思路:输入格式直接转换成数组利用sum(list)求出数组的最大值注意事项:参考代码:n = int(input())a =list(map(int,input().split()))m = ma…… 题解列表 2023年11月19日 0 点赞 0 评论 93 浏览 评分:0.0
最高的分数题解 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<vector> //vector头文件 using namespace std; int max(…… 题解列表 2024年11月19日 0 点赞 0 评论 42 浏览 评分:0.0
最高的分数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ short number, max_score = 0; short *p; scanf("%hd…… 题解列表 2024年01月11日 0 点赞 0 评论 66 浏览 评分:0.0
最高的分数 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int max = 0; int n = 0; scanf("%d",&n…… 题解列表 2023年07月30日 0 点赞 0 评论 126 浏览 评分:0.0
python 编写题解 2797: 最高的分数 摘要:参考代码:n = int(input()) grade = map(int, input().split()) print(max(grade))…… 题解列表 2024年03月11日 0 点赞 0 评论 118 浏览 评分:0.0
2797: 最高的分数--用自定义函数解决(C++) 摘要:解题思路:定义一个数组来存储学生的分数。从键盘输入学生的分数,并将其存储在数组中。定义一个自定义函数,用于计算数组中的最大值。调用自定义函数来计算数组中的最大值,并将其输出。注意事项:该代码假设输入的…… 题解列表 2023年04月10日 0 点赞 0 评论 158 浏览 评分:0.0
使用qsort函数排序,直接找到最大值 摘要:不懂qsort函数用法的看这里[C语言qsort函数的使用详解](https://blog.csdn.net/weixin_47648037/article/details/126691309?ops…… 题解列表 2024年08月09日 0 点赞 0 评论 32 浏览 评分:0.0