题解 2797: 最高的分数

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

筛选

最高的分数

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    short number, max_score = 0;    short *p; scanf("%hd……

2797: 最高的分数

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

最高的分数

摘要:解题思路:输入格式直接转换成数组利用sum(list)求出数组的最大值注意事项:参考代码:n = int(input())a =list(map(int,input().split()))m = ma……

2797: 最高的分数

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){   int maxx = 0;   int n;   ci……

题解 2797: 最高的分数(c++)

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){    int b;    cin>>b;    int m……