#include <stdio.h>
int main(void)
{
int i,n;
double m[100];
int max=m[0];
int min=m[0];
printf("How many numbers?\n");
scanf("%d",&n);
for(i=0;i<n;i++){
scanf("%d",&m[i]);
if(m[0]<m[i]){
max=m[i];
}
if(m[0]>m[i]){
min=m[i];
}
}
printf("The highest of the %d numbers is: %d\n",n,max);
printf("The lowest of the %d numbers is: %d\n",n,min);
return 0;
}
配列の個数を最初に指定してから次に打っていく数字の最大、最小を決めたいです
How many numbers?
5
1
2
3
4
5
The highest of the 5 numbers is: 5
The lowest of the 5 numbers is: 1
動いたらこうなるようにしたいです
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/10/07 10:37