题解 2797: 最高的分数

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

筛选

2797: 最高的分数(详细注释)

摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() {     int n, score, max;         //n,表示n个学生,score,每……

编写题解 2797: 最高的分数

摘要:解题思路:本题使用打擂台法解决注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ long long n;cin>>n; ……

直接写就得了

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

最高的分数题解

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<vector>    //vector头文件 using namespace std; int max(……

最高的分数 for循环与if语句(以下为我复习所用

摘要:解题思路:代码有注释注意事项:题目描述孙老师讲授的《计算概论》这门课期中考试刚刚结束,他想知道考试中取得的最高分数。因为人数比较多,他觉得这件事情交给计算机来做比较方便。你能帮孙老师解决这个问题吗?输……

最高的分数

摘要:解题思路:注意事项:参考代码:n = int(input())l = list(input().split())t = [int(i) for i in l]print(max(t))……

编写题解 2797: 最高的分数

摘要:解题思路:注意事项:参考代码:#includeusing namespace std;int main(){    int n,maxx=0;    cin>>n;    for(int i=1;i<……