求最大值 (C语言代码) 摘要:解题思路:注意事项:不要用while(1),会输出超限;也不要while(scanf("%d%d%d%d%d%d%d%d%d%d",&a[0],&a[1],&a[2],&a[3],&a[4],&a[5…… 题解列表 2018年01月05日 0 点赞 0 评论 1206 浏览 评分:9.9
优质题解 Manchester- 求最大值 摘要:解题思路:①:输入第一个数②:让max等于第一个数③:一次输入后面的九个数,每次输入一个与max比较,若大于max,则让max等于这个数④:输出最大的数注意事项:参考代码:#include<stdio…… 题解列表 2018年03月27日 4 点赞 1 评论 1289 浏览 评分:9.9
求最大值 (C++代码)20行搞定 摘要:解题思路:利用c++的priority_queue,就是所谓的堆注意事项:参考代码:#include<cstdio>#include<queue>using std::priority_queue;i…… 题解列表 2019年02月15日 0 点赞 0 评论 647 浏览 评分:9.9
求最大值-题解(C语言代码) 摘要:1、此题最大的障碍就是有多组测试数据,但这个多组是多少不确定。 2、所以只要掌握了截止测试的关键,此题就不攻自破了,我想的是在输入第一个数是判断一下是否结束,这时只要用“while(scanf("%…… 题解列表 2019年07月03日 0 点赞 0 评论 843 浏览 评分:0.0
求最大值-题解(Java代码)不到十行 摘要:1、使用ArrayList集合,循环插入元素,输入-1结束后终止循环; 2、然后用Collections类的sort方法从小到大排序集合; 3、将排序后的最后一个元素输出,即最大值; ```ja…… 题解列表 2019年11月16日 0 点赞 0 评论 357 浏览 评分:9.9
求最大值-题解(C++代码) 摘要:```cpp #include using namespace std; int adjust(int *p,int i,int len){ int left=2*i+1; …… 题解列表 2020年03月16日 0 点赞 0 评论 376 浏览 评分:0.0
求最大值-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,m,n,max; while(scanf("%d",&n)!=EOF) { max=n; i=0…… 题解列表 2020年11月24日 0 点赞 0 评论 387 浏览 评分:9.9
求最大值sdgafsdgasd 摘要:解题思路:注意事项:参考代码:#include "stdio.h"int MAX(int arr[], int L, int R) { if (L == R) { int s = arr[L]; …… 题解列表 2021年10月29日 0 点赞 0 评论 251 浏览 评分:0.0
1723: 求最大值-C语言 (归并排序) 摘要:```c //求最大值 #include #include void sort(int arr[], int temparr[], int left, int right); voi…… 题解列表 2021年12月29日 0 点赞 0 评论 158 浏览 评分:9.9
11111111111111111111111111111111111111111111111111111111a 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n,m; while(scanf("%d",&…… 题解列表 2022年08月10日 0 点赞 0 评论 162 浏览 评分:0.0