最大值和最小值的差 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int a[10001];int main(){ int n,i,max,min; scanf("%d",&n); …… 题解列表 2023年02月01日 0 点赞 0 评论 1167 浏览 评分:9.9
最大值和最小值的差,包清楚的c语言。  题解列表 2025年03月20日 4 点赞 0 评论 514 浏览 评分:10.0
2905: 最大值和最小值的差 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iomanip>#include<cmath>using…… 题解列表 2025年08月23日 1 点赞 0 评论 351 浏览 评分:10.0
2905: 最大值和最小值的差 摘要:```cpp #include using namespace std; int main() { int M,max=-10001,min=10001,x; cin>>M…… 题解列表 2022年11月30日 0 点赞 0 评论 682 浏览 评分:10.0
Python最简单方法,3行搞定 摘要:```pythonM = int(input())nums = list(map(int,input().split()))print(max(nums) - min(nums))…… 题解列表 2026年03月19日 0 点赞 0 评论 232 浏览 评分:10.0