include <stdio.h>
int main()
{
//在此处定义一个3行4列的整数数组n
int temp;
int max=0,maxRow,maxCol;//最大值,最大值的行和列
int min=99999999,minRow,minCol;//最小值,最小值的行和列
for(int i=0;i<3;i++)
for(int j=0;j<4;j++)
{
scanf("%d",&temp);
//在此处输入将temp赋值给数组的i行j列
if(temp>max)
{
//在此处输入temp大于最大值时的操作
}
if(temp<min)
{
//在此处输入temp小于最小值时的操作
}
}
printf("最大值:%d,所在位置:%d行%d列\n",max,maxRow,maxCol);
printf("最小值:%d,所在位置:%d行%d列",min,minRow,minCol);
return 0;
}