题解 2797: 最高的分数

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

2797: 最高的分数

摘要:```cpp #include using namespace std; int main() { int a,n,max; cin>>n; max=0; ……

最高的分数

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){      int a[1000],i,n,max=0;      scanf("%d",&n);      fo……

最高的分数(c++超简单)

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){    int a, n, max;    cin >> n;    m……

编写题解 2797: 最高的分数

摘要:解题思路:注意事项:参考代码:n=int(input()) grades=list(map(int,input().split())) #将成绩打包为整型数组 max=grades[0] for……

简单,直观的解法

摘要:前一个和后一个一直比较大小,每次保存最大的值。 ```c #include #define max(a,b) (a>b?a:b) int main(){ int n,num,res=……