2797: 最高的分数(详细注释) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { int n, score, max; //n,表示n个学生,score,每…… 题解列表 2024年12月20日 1 点赞 0 评论 195 浏览 评分:0.0
2797 最高的分数(简单易懂) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,n; int a[100]; scanf("%d",&n); for(i=0…… 题解列表 2024年12月06日 0 点赞 0 评论 98 浏览 评分:10.0
直接写就得了 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,max=0; scanf("%d",&a); while(a) { …… 题解列表 2024年11月26日 0 点赞 0 评论 88 浏览 评分:2.0
编写题解 2797: 最高的分数 摘要: #include int main() { int n,a[100],k=0; scanf("%d", &n); for (int q …… 题解列表 2024年11月17日 1 点赞 0 评论 73 浏览 评分:10.0
最高的分数 for循环与if语句(以下为我复习所用 摘要:解题思路:代码有注释注意事项:题目描述孙老师讲授的《计算概论》这门课期中考试刚刚结束,他想知道考试中取得的最高分数。因为人数比较多,他觉得这件事情交给计算机来做比较方便。你能帮孙老师解决这个问题吗?输…… 题解列表 2024年11月04日 0 点赞 0 评论 73 浏览 评分:0.0
使用qsort函数排序,直接找到最大值 摘要:不懂qsort函数用法的看这里[C语言qsort函数的使用详解](https://blog.csdn.net/weixin_47648037/article/details/126691309?ops…… 题解列表 2024年08月09日 0 点赞 0 评论 31 浏览 评分:0.0
最高的分数 摘要:解题思路:注意事项:参考代码:n = int(input())l = list(input().split())t = [int(i) for i in l]print(max(t))…… 题解列表 2024年07月29日 0 点赞 0 评论 73 浏览 评分:0.0
最高的分数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ short number, max_score = 0; short *p; scanf("%hd…… 题解列表 2024年01月11日 0 点赞 0 评论 66 浏览 评分:0.0
最高的分数(最简单版) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,max=0; scanf("%d",&a); for(int i=0;i<a;…… 题解列表 2023年11月27日 0 点赞 0 评论 83 浏览 评分:0.0
球数组的最大元素的简单方法 摘要:解题思路:参考注释注意事项:参考代码:#include<stdio.h>int main(){ int r, j[1000];//定义人数变量,定义成绩数组 int i;//定义循环条件变量 int …… 题解列表 2023年11月15日 0 点赞 0 评论 163 浏览 评分:9.9