2025/7/26刷题记录 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a; scanf("%d&qu…… 题解列表 2025年07月26日 0 点赞 0 评论 31 浏览 评分:0.0
最高的分数 摘要:解题思路:注意事项:参考代码:int main(){ int n = 0; scanf("%d", &n);…… 题解列表 2025年06月13日 1 点赞 0 评论 75 浏览 评分:10.0
。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n; …… 题解列表 2025年03月03日 0 点赞 0 评论 176 浏览 评分:10.0
最高的分数 摘要:解题思路:使用了一个for循环输入成绩,再用冒泡排序进行比较,得出结论。注意事项:参考代码:#include<stdio.h>int main(){ int n,…… 题解列表 2025年02月28日 2 点赞 0 评论 256 浏览 评分:10.0
题解 2797: 最高的分数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int a,b[100],max=b[0]; scanf…… 题解列表 2025年01月25日 0 点赞 0 评论 253 浏览 评分:0.0
2797: 最高的分数(详细注释) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { int n, score, max; //n,表示n个学生,score,每…… 题解列表 2024年12月20日 1 点赞 0 评论 364 浏览 评分:0.0
编写题解 2797: 最高的分数 摘要:解题思路:本题使用打擂台法解决注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ long long n;cin>>n; …… 题解列表 2024年12月08日 1 点赞 0 评论 219 浏览 评分: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 评论 268 浏览 评分:10.0
直接写就得了 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,max=0; scanf("%d",&a); while(a) { …… 题解列表 2024年11月26日 0 点赞 0 评论 210 浏览 评分:2.0
最高的分数题解 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<vector> //vector头文件 using namespace std; int max(…… 题解列表 2024年11月19日 0 点赞 0 评论 136 浏览 评分:0.0