整数序列的元素最大跨度值 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main() { int n,max,min; scanf("%d",&n); int a[n]; f…… 题解列表 2023年11月25日 0 点赞 0 评论 383 浏览 评分:9.9
虽然简单但是注意的问题多 摘要:解题思路:看到这题,直接数组加for语句,max,min值比较就行注意事项:max,min的定义顺序很重要,你要是直接定义max,min各自=0,代入其他的数(非零的),就错误了。须得把max,min…… 题解列表 2023年01月09日 0 点赞 1 评论 466 浏览 评分:9.9
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
题解 2798: 整数序列的元素最大跨度值 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int sum,m,sun; sum=0; …… 题解列表 2024年01月09日 0 点赞 0 评论 137 浏览 评分:9.9
2798:用数组找最大值-《C语言》 摘要:解题思路:注意事项:参考代码:#include <math.h> #include <stdio.h> #include <stdlib.h> #define N 1000 int main(…… 题解列表 2022年12月20日 0 点赞 0 评论 551 浏览 评分:9.9
对题2798:编写寻找数组最大值与最小值的函数,求得最大跨度值 摘要: 解题思路:先设置一个长度为1000的arr数组,通过输入n的值,用for循环可以设置arr[n]数组中的每个元素。在设置好数组的基础上,编写两个函数分别找出arr[n]数组中的最大元素…… 题解列表 2024年09月07日 0 点赞 0 评论 92 浏览 评分: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
简简单单看我的 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); int cdd[n]; for(int i=0;i<n;i++){…… 题解列表 2022年10月23日 0 点赞 1 评论 752 浏览 评分:8.5
哥们哥们,投机来吗(有一点小问题) 摘要:解题思路:条件表达式注意事项:不要写错参考代码:#include<stdio.h>#define max(a,b) (a>b?a:b) #define min(a,b) (a<b?a:b)int ma…… 题解列表 2022年11月04日 0 点赞 0 评论 439 浏览 评分:6.0
元素最大跨度值 用到了max min for循环 摘要:解题思路:注意事项:题目描述给定一个长度为n的非负整数序列,请计算序列的最大跨度值(最大跨度值 = 最大值减去最小值)。输入格式一共2行,第一行为序列的个数n(1 <= n <= 1000),第二行为…… 题解列表 2024年11月04日 0 点赞 0 评论 65 浏览 评分:0.0