2797: 最高的分数--用自定义函数解决(C++) 摘要:解题思路:定义一个数组来存储学生的分数。从键盘输入学生的分数,并将其存储在数组中。定义一个自定义函数,用于计算数组中的最大值。调用自定义函数来计算数组中的最大值,并将其输出。注意事项:该代码假设输入的…… 题解列表 2023年04月10日 0 点赞 0 评论 256 浏览 评分:0.0
2797: 最高的分数 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int n,max=0; int ar…… 题解列表 2023年11月15日 0 点赞 0 评论 200 浏览 评分:0.0
最高的分数 摘要:解题思路:输入格式直接转换成数组利用sum(list)求出数组的最大值注意事项:参考代码:n = int(input())a =list(map(int,input().split()))m = ma…… 题解列表 2023年11月19日 0 点赞 0 评论 168 浏览 评分: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 评论 347 浏览 评分:0.0
最高的分数 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int max = 0; int n = 0; scanf("%d",&n…… 题解列表 2023年07月30日 0 点赞 0 评论 190 浏览 评分:0.0
题解 2797: 最高的分数(c++) 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int b; cin>>b; int m…… 题解列表 2024年01月09日 0 点赞 0 评论 102 浏览 评分:0.0
2797: 最高的分数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int maxx = 0; int n; ci…… 题解列表 2024年01月09日 0 点赞 0 评论 104 浏览 评分:0.0
最高的分数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int n,maxx=0,a; cin>>n;…… 题解列表 2023年07月01日 0 点赞 0 评论 122 浏览 评分:0.0
感谢支持,谢谢你们的支持 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int n,cj,maxx=0;; cin>>…… 题解列表 2023年07月01日 0 点赞 0 评论 134 浏览 评分:0.0
最高的分数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ short number, max_score = 0; short *p; scanf("%hd…… 题解列表 2024年01月11日 0 点赞 0 评论 121 浏览 评分:0.0