5 つの要素の配列で最大数を取得するコードに問題があります。これが私のコードです。
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
float timerunner1[4];
int x;
int main() {
for(x=1;x<6;x++) {
printf("Give me the time of runner 1: ");
scanf("%f",timerunner1[x]);
}
return 0;
}
これは完全に機能します。出力は次のとおりです。
Give me the time of runner 1: 14
Give me the time of runner 1: 3
Give me the time of runner 1: 10
Give me the time of runner 1: 5
Give me the time of runner 1: 2
配列の最大数と最小数を取得するにはどうすればよいですか? for または if を使用する場合があります。
ありがとう!