整数序列的元素最大跨度值 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int maxx = 0, minn = INT_MA…… 题解列表 2024年01月10日 0 点赞 1 评论 44 浏览 评分:2.0
java--study||O.o 摘要:参考代码:import java.util.Scanner; import java.util.Arrays; public class Main { public static vo…… 题解列表 2024年01月11日 0 点赞 0 评论 121 浏览 评分:9.9
2798: 整数序列的元素最大跨度值 摘要:解题思路:注意事项:最小值初值最大,最大值初值最小#include<bits/stdc++.h>using namespace std;int main(){ int n,b,c=INT_MAX…… 题解列表 2024年01月13日 0 点赞 0 评论 63 浏览 评分:0.0
整数序列的元素最大跨度值C 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,i,a[1000],min,max; scanf("%d",&n); for(i=…… 题解列表 2024年02月16日 0 点赞 0 评论 41 浏览 评分:0.0
复习排序(本题用最后一种方法,前几个也可以) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n; cin >> n; int a[n],i=-1…… 题解列表 2024年03月03日 0 点赞 0 评论 79 浏览 评分:0.0
2798: 整数序列的元素最大跨度值 摘要:注意事项: 给max和min赋值时注意,一定要让这两个值有改动,否则记录的不是输入的值,max够小,min够大参考代码:#include<iostream> using namespace s…… 题解列表 2024年03月04日 0 点赞 0 评论 180 浏览 评分:0.0
python 2798: 整数序列的元素最大跨度值 摘要:参考代码:n = input() arr = list(map(int, input().split())) print(max(arr)-min(arr))…… 题解列表 2024年03月12日 0 点赞 0 评论 139 浏览 评分:0.0
整数序列的元素最大跨度值(max,min) 摘要:解题思路:注意事项:参考代码:n = int(input())l = list(input().split())t = [int(i) for i in l]print(max(t) - min(t)…… 题解列表 2024年07月29日 0 点赞 0 评论 75 浏览 评分:0.0
对题2798:编写寻找数组最大值与最小值的函数,求得最大跨度值 摘要: 解题思路:先设置一个长度为1000的arr数组,通过输入n的值,用for循环可以设置arr[n]数组中的每个元素。在设置好数组的基础上,编写两个函数分别找出arr[n]数组中的最大元素…… 题解列表 2024年09月07日 0 点赞 0 评论 92 浏览 评分:9.9
好理解的答案:关于函数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int max(int x , int y ){ int d; d=x>y?x:y ; return d ; }int min(…… 题解列表 2024年11月04日 0 点赞 0 评论 56 浏览 评分:0.0