题解 2905: 最大值和最小值的差

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

c语言数组求差

摘要:解题思路:利用数组求解,通过if判断条件得出max和min注意事项:记得遍历数组参考代码:#include <stdio.h>int main(){    int n;    scanf("%d",&……

最大值和最小值的差

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int a[10001];int main(){     int n,i,max,min;     scanf("%d",&n);   ……

最大值和最小值的差

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int max,min,i,M,a[10000]; scanf("%d",&M); for(i=0;i<M;i+……

最大值和最小值的差

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int n,a[10000],i; int max; int min; int difference; sc……

最普通的解题方法

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int a,b,max=0,min=10000;    scanf("%d",&a);    while(……

c语言代码易懂

摘要:解题思路:注意事项:参考代码:int main (){    int a[10000];    int M;    scanf ("%d",&M);    for (int i=00;i<M;i++)……