题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2022
题目大意:找出绝对值最大的数,并输出行和列~
1 #include<stdio.h> 2 #include<math.h> 3 int main(void) 4 { 5 int m,n,i,j; 6 int x,y,s,a,row,max; 7 while(scanf("%d %d",&m,&n)!=EOF) 8 { 9 max=0; 10 s=0; 11 for(j=1; j<=m; j++) 12 { 13 for(i=1; i<=n; i++) 14 { 15 scanf("%d",&a); 16 if(fabs(a)>fabs(max)) 17 { 18 max=a; 19 row=j; 20 y=i; 21 } 22 } 23 if(fabs(max)>fabs(s)) 24 { 25 s=max; 26 x=j; 27 } 28 } 29 printf("%d %d %d ",x,y,s); 30 } 31 return 0; 32 }