2025/7/26刷题记录 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a; scanf("%d&qu…… 题解列表 2025年07月26日 1 点赞 0 评论 265 浏览 评分:0.0
2797:最高的分数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n);//5 int i,scor…… 题解列表 2025年11月03日 0 点赞 0 评论 239 浏览 评分:0.0
刷题记录2025/12/3 2797: 最高的分数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,n,i,max=0; scanf("%d\n",&n); f…… 题解列表 2025年12月03日 0 点赞 0 评论 195 浏览 评分:0.0
C++最高分数 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iomanip>#include<cmath>#include<algor…… 题解列表 2026年02月22日 0 点赞 0 评论 68 浏览 评分:0.0
直接写就得了 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,max=0; scanf("%d",&a); while(a) { …… 题解列表 2024年11月26日 0 点赞 0 评论 321 浏览 评分:2.0
家人们,为什么这么写不对啊 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include<math.h>int main(){ int num[10], n, i, j, max; scanf("%d", …… 题解列表 2023年08月20日 0 点赞 2 评论 403 浏览 评分:6.0
编写题解 2797: 最高的分数c语言 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n1, n2; int num = 0; int i = 0; scanf("%d", &n1); fo…… 题解列表 2022年12月04日 0 点赞 0 评论 454 浏览 评分:6.0
菜鸡写法xxxx 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args…… 题解列表 2023年12月04日 0 点赞 2 评论 314 浏览 评分:7.3
编写题解 2797: 最高的分数 摘要:解题思路:注意事项:参考代码:n=int(input()) grades=list(map(int,input().split())) #将成绩打包为整型数组 max=grades[0] for…… 题解列表 2022年10月23日 0 点赞 0 评论 975 浏览 评分:8.0
//////////////最高的分数////////////// 摘要:解题思路:#include<bits/stdc++.h>int main(){ int n, arr[1000], max=0; scanf("%d", &n); for (int …… 题解列表 2023年07月11日 0 点赞 0 评论 498 浏览 评分:8.7