最高的分数 for循环与if语句(以下为我复习所用 摘要:解题思路:代码有注释注意事项:题目描述孙老师讲授的《计算概论》这门课期中考试刚刚结束,他想知道考试中取得的最高分数。因为人数比较多,他觉得这件事情交给计算机来做比较方便。你能帮孙老师解决这个问题吗?输…… 题解列表 2024年11月04日 0 点赞 0 评论 199 浏览 评分:0.0
最高的分数 摘要:解题思路:注意事项:参考代码:n = int(input())l = list(input().split())t = [int(i) for i in l]print(max(t))…… 题解列表 2024年07月29日 0 点赞 0 评论 289 浏览 评分:0.0
三行简便 编写题解 2797: 最高的分数 摘要:解题思路:map;list;max注意事项:仔细检查中英文符号参考代码:n=int(input())a=list(map(int,input().split()))print(max(a))…… 题解列表 2024年04月04日 0 点赞 0 评论 429 浏览 评分:0.0
python 编写题解 2797: 最高的分数 摘要:参考代码:n = int(input()) grade = map(int, input().split()) print(max(grade))…… 题解列表 2024年03月11日 0 点赞 0 评论 280 浏览 评分:0.0
循环嵌套求最大 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {…… 题解列表 2024年03月07日 0 点赞 0 评论 174 浏览 评分:0.0
最高的分数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ short number, max_score = 0; short *p; scanf("%hd…… 题解列表 2024年01月11日 0 点赞 0 评论 121 浏览 评分:0.0
2797: 最高的分数 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int n,max=0; int ar…… 题解列表 2023年11月15日 0 点赞 0 评论 200 浏览 评分:0.0
最高的分数 摘要:解题思路:输入格式直接转换成数组利用sum(list)求出数组的最大值注意事项:参考代码:n = int(input())a =list(map(int,input().split()))m = ma…… 题解列表 2023年11月19日 0 点赞 0 评论 168 浏览 评分:0.0
2797: 最高的分数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int maxx = 0; int n; ci…… 题解列表 2024年01月09日 0 点赞 0 评论 104 浏览 评分:0.0
题解 2797: 最高的分数(c++) 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int b; cin>>b; int m…… 题解列表 2024年01月09日 0 点赞 0 评论 102 浏览 评分:0.0