。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n; ……
题解 2797: 最高的分数
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int a,b[100],max=b[0]; scanf……
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; ……
2797 最高的分数(简单易懂)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,n; int a[100]; scanf("%d",&n); for(i=0……
编写题解 2797: 最高的分数
摘要: #include
int main()
{
int n,a[100],k=0;
scanf("%d", &n);
for (int q ……