#include <stdio.h>
int main() {
int M,index,max;
int a[9];
max = 0;
for (int i = 0; i < 9; i++)
{
scanf_s("%d", &a[i]);
if (max < a[i])
{
max = a[i];
index = i;
}
}
printf("%d\n%d", max,index+1);
return 0;
}
배열을 받는법에대해 알았다. 배열로 안풀고 바로 구해보려 했으나 index값때문에 결국 저장해줘야한다는 것을 알았다.