2797: 最高的分数(C语言) 摘要: #include int main() { int n; scanf("%d",&n); int a[n]; int i; for(i=0;i…… 题解列表 2023年07月06日 0 点赞 0 评论 454 浏览 评分:9.3
循环控制--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 评论 228 浏览 评分:8.7
//////////////最高的分数////////////// 摘要:解题思路:#include<bits/stdc++.h>int main(){ int n, arr[1000], max=0; scanf("%d", &n); for (int …… 题解列表 2023年07月11日 0 点赞 0 评论 315 浏览 评分:8.7
编写题解 2797: 最高的分数 摘要:解题思路:注意事项:参考代码:n=int(input()) grades=list(map(int,input().split())) #将成绩打包为整型数组 max=grades[0] for…… 题解列表 2022年10月23日 0 点赞 0 评论 646 浏览 评分:8.0
菜鸡写法xxxx 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args…… 题解列表 2023年12月04日 0 点赞 2 评论 113 浏览 评分:7.3
编写题解 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 评论 227 浏览 评分:6.0
家人们,为什么这么写不对啊 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include<math.h>int main(){ int num[10], n, i, j, max; scanf("%d", …… 题解列表 2023年08月20日 0 点赞 2 评论 171 浏览 评分:6.0
直接写就得了 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,max=0; scanf("%d",&a); while(a) { …… 题解列表 2024年11月26日 0 点赞 0 评论 101 浏览 评分:2.0
编写题解 2797: 最高的分数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); int a[n]; for(int i=0…… 题解列表 2023年04月25日 0 点赞 0 评论 90 浏览 评分:0.0
循环嵌套求最大 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {…… 题解列表 2024年03月07日 0 点赞 0 评论 109 浏览 评分:0.0