给用Java的开一下荒土 摘要:解题思路:注意事项:参考代码:public class Main { public static void main(String[] args) { Scanner scanner = n…… 题解列表 2023年03月31日 0 点赞 0 评论 505 浏览 评分:9.9
循环控制--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 评论 283 浏览 评分:8.7
<循环>求数组里面的最大值(C语言) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int n, arr[1000], max=0; scanf("%d", &n); for …… 题解列表 2023年02月10日 0 点赞 0 评论 865 浏览 评分:9.9
2797: 最高的分数 摘要:解题思路: 搞不懂这道题的意义在哪里?注意事项:参考代码:n = int(input()) #成绩个数a = list(map(int,input().split())) #把成绩转换为列表p…… 题解列表 2023年02月03日 0 点赞 0 评论 551 浏览 评分:9.6
2797: 最高的分数 摘要:```cpp #include using namespace std; int main() { int a,n,max; cin>>n; max=0; …… 题解列表 2023年01月29日 0 点赞 0 评论 582 浏览 评分:9.9
2797: 最高的分数(STL函数最快解决问题) 摘要:##2797: 最高的分数 ######用max_element的时候输出记得加*解引用 ```cpp #include using namespace std; int main() {…… 题解列表 2023年01月02日 0 点赞 0 评论 303 浏览 评分:9.9
最高的分数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[1000],i,n,max=0; scanf("%d",&n); fo…… 题解列表 2022年12月30日 0 点赞 2 评论 394 浏览 评分:9.5
编写题解 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 评论 287 浏览 评分:6.0
最高的分数(c++超简单) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a, n, max; cin >> n; m…… 题解列表 2022年11月03日 0 点赞 0 评论 546 浏览 评分:9.9
编写题解 2797: 最高的分数 摘要:解题思路:注意事项:参考代码:n=int(input()) grades=list(map(int,input().split())) #将成绩打包为整型数组 max=grades[0] for…… 题解列表 2022年10月23日 0 点赞 0 评论 757 浏览 评分:8.0