2798: 整数序列的元素最大跨度值题解 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int n,maxx= -1e18 ,minn=1e…… 题解列表 2024年12月22日 2 点赞 0 评论 71 浏览 评分:10.0
2798: 整数序列的元素最大跨度值(C语言) 摘要: #include int main() { int n; scanf("%d",&n); int a[n]; int i; for(i=0;i…… 题解列表 2023年07月06日 0 点赞 1 评论 285 浏览 评分:9.9
虽然简单但是注意的问题多 摘要:解题思路:看到这题,直接数组加for语句,max,min值比较就行注意事项:max,min的定义顺序很重要,你要是直接定义max,min各自=0,代入其他的数(非零的),就错误了。须得把max,min…… 题解列表 2023年01月09日 0 点赞 1 评论 466 浏览 评分:9.9
不用函数,不用数组,轻轻松松get 摘要:解题思路:不用函数,不用数组注意事项:参考代码:#include<stdio.h>int main(){ int n,a,i,c,d,max,min; c=1000; d=0; …… 题解列表 2023年02月08日 0 点赞 0 评论 380 浏览 评分:9.9
题解 2798整数序列的元素最大跨度值 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int n,maxx=0,minn=INT_MAX;…… 题解列表 2024年01月10日 0 点赞 0 评论 130 浏览 评分:9.9
题解 2798: 整数序列的元素最大跨度值 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int sum,m,sun; sum=0; …… 题解列表 2024年01月09日 0 点赞 0 评论 137 浏览 评分:9.9
java--study||O.o 摘要:参考代码:import java.util.Scanner; import java.util.Arrays; public class Main { public static vo…… 题解列表 2024年01月11日 0 点赞 0 评论 122 浏览 评分:9.9
对题2798:编写寻找数组最大值与最小值的函数,求得最大跨度值 摘要: 解题思路:先设置一个长度为1000的arr数组,通过输入n的值,用for循环可以设置arr[n]数组中的每个元素。在设置好数组的基础上,编写两个函数分别找出arr[n]数组中的最大元素…… 题解列表 2024年09月07日 0 点赞 0 评论 92 浏览 评分:9.9
2798:用数组找最大值-《C语言》 摘要:解题思路:注意事项:参考代码:#include <math.h> #include <stdio.h> #include <stdlib.h> #define N 1000 int main(…… 题解列表 2022年12月20日 0 点赞 0 评论 552 浏览 评分:9.9
2798: 整数序列的元素最大跨度值 摘要:解题思路:注意事项:参考代码:a = int(input())n = list(map(int,input().split()))print(max(n) - min(n))…… 题解列表 2023年02月05日 0 点赞 1 评论 249 浏览 评分:9.9