我在数组中写了一个 5x6 随机数的代码,我怎样才能在其中找到最大的数字,然后打印它的位置(x,y)?
#include <time.h>
#include <stdlib.h>
#include <stdio.h>
int main () {
int array[5][6];
srand(time(NULL));
int x, y;
for(x = 0; x < 5; x++) {
for(y = 0; y < 6; y++) {
array[x][y] = rand() % 31 + 10;
printf("%d \t", array[x][y]);
}
printf("\n");
}
return 0;
}