2797: 最高的分数--用自定义函数解决(C++)
摘要:解题思路:定义一个数组来存储学生的分数。从键盘输入学生的分数,并将其存储在数组中。定义一个自定义函数,用于计算数组中的最大值。调用自定义函数来计算数组中的最大值,并将其输出。注意事项:该代码假设输入的……
2797: 最高的分数
摘要:解题思路:注意事项:参考代码:#include<iostream>
using namespace std;
int main()
{
int n,max=0;
int ar……
使用qsort函数排序,直接找到最大值
摘要:不懂qsort函数用法的看这里[C语言qsort函数的使用详解](https://blog.csdn.net/weixin_47648037/article/details/126691309?ops……
题解 2797: 最高的分数(c++)
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int b; cin>>b; int m……
2797: 最高的分数(详细注释)
摘要:解题思路:注意事项:参考代码:#include <stdio.h>
int main()
{
int n, score, max;
//n,表示n个学生,score,每……
最高的分数(最简单版)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,max=0; scanf("%d",&a); for(int i=0;i<a;……