编写题解 2797: 最高的分数 摘要: #include int main() { int n,a[100],k=0; scanf("%d", &n); for (int q …… 题解列表 2024年11月17日 1 点赞 0 评论 74 浏览 评分:10.0
编写题解 2797: 最高的分数 摘要:解题思路:本题使用打擂台法解决注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ long long n;cin>>n; …… 题解列表 2024年12月08日 1 点赞 0 评论 72 浏览 评分:10.0
2797 最高的分数(简单易懂) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,n; int a[100]; scanf("%d",&n); for(i=0…… 题解列表 2024年12月06日 0 点赞 0 评论 100 浏览 评分:10.0
题解 2797 最高的分数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int maxx=0 , n; cin>>n…… 题解列表 2024年01月10日 0 点赞 0 评论 112 浏览 评分:9.9
编写题解 2797: 最高的分数 摘要:解题思路:注意事项:参考代码:#includeusing namespace std;int main(){ int n,maxx=0; cin>>n; for(int i=1;i<…… 题解列表 2024年06月16日 0 点赞 0 评论 96 浏览 评分:9.9
<循环>求数组里面的最大值(C语言) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int n, arr[1000], max=0; scanf("%d", &n); for …… 题解列表 2023年02月10日 0 点赞 0 评论 802 浏览 评分:9.9
题解 2797: 最高的分数 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n,b,a=0; cin>>n; for(int i…… 题解列表 2023年11月05日 0 点赞 0 评论 448 浏览 评分:9.9
最高分数的题解 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int n; int i; int a[1000]; int max=0; scanf("%d",&n); f…… 题解列表 2023年11月11日 0 点赞 0 评论 788 浏览 评分:9.9
2797: 最高的分数(STL函数最快解决问题) 摘要:##2797: 最高的分数 ######用max_element的时候输出记得加*解引用 ```cpp #include using namespace std; int main() {…… 题解列表 2023年01月02日 0 点赞 0 评论 218 浏览 评分:9.9
优质题解 2797: 最高的分数(C++STL)解题 摘要:###### 解题思路: 将所有的数据存储到数组中去,,使用sort函数对他们进行排序,然后再输出就可以啦 ###### 注意事项: 在使用sort函数前,先了解一下它吧 它是ST…… 题解列表 2023年06月02日 0 点赞 0 评论 834 浏览 评分:9.9