题解 2905: 最大值和最小值的差 摘要: #include using namespace std; int a[100000],b[100000],c[1000000],d,e,f,g; int mai…… 题解列表 2023年12月06日 0 点赞 2 评论 36 浏览 评分:6.0
最大值和最小值的差 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int max,min,i,M,a[10000]; scanf("%d",&M); for(i=0;i<M;i+…… 题解列表 2022年11月22日 0 点赞 0 评论 325 浏览 评分:7.0
2905: 最大值和最小值的差(max_element) 摘要:解题思路:一个最简单的思路,把输入的数扫描一遍,找到最大值和最小值,相减即可。需要注意将两个变量初始化。参考代码:#include<iostream> #include<set> using na…… 题解列表 2022年09月14日 0 点赞 0 评论 721 浏览 评分:9.9
2905: 最大值和最小值的差 摘要:```#include using namespace std; int N[1000000],n,b; int main(){ cin>>n; for( int i=1;i>N[i];…… 题解列表 2023年12月01日 0 点赞 0 评论 120 浏览 评分:9.9
最大值和最小值的差 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int a[10001];int main(){ int n,i,max,min; scanf("%d",&n); …… 题解列表 2023年02月01日 0 点赞 0 评论 473 浏览 评分:9.9
c语言数组求差 摘要:解题思路:利用数组求解,通过if判断条件得出max和min注意事项:记得遍历数组参考代码:#include <stdio.h>int main(){ int n; scanf("%d",&…… 题解列表 2023年12月06日 0 点赞 0 评论 160 浏览 评分:9.9
最大值和最小值的差(java) 摘要:解题思路:注意事项:参考代码:package Fourteen;import java.util.Scanner;public class 最大值和最小值的差 { public static v…… 题解列表 2023年05月11日 0 点赞 0 评论 236 浏览 评分:9.9
编写题解 2905: 最大值和最小值的差 摘要:```c #include int main() { int num,nums[10000],i,j,temp; scanf("%d",&num); for(i=0;i…… 题解列表 2024年05月27日 0 点赞 0 评论 82 浏览 评分:9.9
2905: 最大值和最小值的差 摘要:```cpp #include using namespace std; int main() { int M,max=-10001,min=10001,x; cin>>M…… 题解列表 2022年11月30日 0 点赞 0 评论 328 浏览 评分:9.9