感谢支持,谢谢你们的支持 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int n,cj,maxx=0;; cin>>…… 题解列表 2023年07月01日 0 点赞 0 评论 151 浏览 评分:0.0
直接写就得了 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,max=0; scanf("%d",&a); while(a) { …… 题解列表 2024年11月26日 0 点赞 0 评论 217 浏览 评分:2.0
家人们,为什么这么写不对啊 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include<math.h>int main(){ int num[10], n, i, j, max; scanf("%d", …… 题解列表 2023年08月20日 0 点赞 2 评论 257 浏览 评分: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 评论 320 浏览 评分:6.0
菜鸡写法xxxx 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args…… 题解列表 2023年12月04日 0 点赞 2 评论 199 浏览 评分:7.3
编写题解 2797: 最高的分数 摘要:解题思路:注意事项:参考代码:n=int(input()) grades=list(map(int,input().split())) #将成绩打包为整型数组 max=grades[0] for…… 题解列表 2022年10月23日 0 点赞 0 评论 776 浏览 评分:8.0
循环控制--5.最高的分数 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int n,max=0,a; scanf("%d",&n); for(int i=0;i<n…… 题解列表 2023年03月24日 0 点赞 0 评论 304 浏览 评分:8.7
//////////////最高的分数////////////// 摘要:解题思路:#include<bits/stdc++.h>int main(){ int n, arr[1000], max=0; scanf("%d", &n); for (int …… 题解列表 2023年07月11日 0 点赞 0 评论 378 浏览 评分:8.7
2797: 最高的分数(C语言) 摘要: #include int main() { int n; scanf("%d",&n); int a[n]; int i; for(i=0;i…… 题解列表 2023年07月06日 0 点赞 0 评论 555 浏览 评分:9.3
最高的分数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[1000],i,n,max=0; scanf("%d",&n); fo…… 题解列表 2022年12月30日 0 点赞 2 评论 424 浏览 评分:9.5