1723: 求最大值 超级简单做法 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; int main(){ // 定义一个长度为10的整型数组a …… 题解列表 2024年12月07日 0 点赞 0 评论 67 浏览 评分:0.0
求最大值——python 摘要:解题思路:注意事项:参考代码:while True: try: L = list(map(int,input().split())) print(f"max={max…… 题解列表 2023年04月05日 0 点赞 0 评论 62 浏览 评分:0.0
11111111111111111111111111111111111111111111111111111111a 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n,m; while(scanf("%d",&…… 题解列表 2022年08月10日 0 点赞 0 评论 162 浏览 评分: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
求最大值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
求最大值-题解(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 评论 386 浏览 评分: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
求最大值-题解(Java代码)不到十行 摘要:1、使用ArrayList集合,循环插入元素,输入-1结束后终止循环; 2、然后用Collections类的sort方法从小到大排序集合; 3、将排序后的最后一个元素输出,即最大值; ```ja…… 题解列表 2019年11月16日 0 点赞 0 评论 357 浏览 评分:9.9
求最大值-题解(C语言代码) 摘要:1、此题最大的障碍就是有多组测试数据,但这个多组是多少不确定。 2、所以只要掌握了截止测试的关键,此题就不攻自破了,我想的是在输入第一个数是判断一下是否结束,这时只要用“while(scanf("%…… 题解列表 2019年07月03日 0 点赞 0 评论 843 浏览 评分:0.0
求最大值 (C++代码)20行搞定 摘要:解题思路:利用c++的priority_queue,就是所谓的堆注意事项:参考代码:#include<cstdio>#include<queue>using std::priority_queue;i…… 题解列表 2019年02月15日 0 点赞 0 评论 647 浏览 评分:9.9