#include <stdio.h>
#include <stdlib.h>
#include <math.h>
int main(int argc, char *argv[]) {
int n, max , c , b;
scanf("%d",&n);
if(n >= 1 && n <= 6){
int a[n][n];
int i , j ;
for(i = 0; i < n; i++)
for(j = 0; j < n; j++){
scanf("%d",&a[i][j]);
}
max = fabs(a[0][0]);
for(i = 0; i < n; i++){
for(j = 0; j < n; j++){
if(fabs(a[i][j]) > max){
max = fabs(a[i][j]);
c = i + 1;
b = j + 1;
}
}
}
printf("%d ",max);
printf("%d %d",c,b);
}
else printf("error!!!");
return 0;
}
0.0分
0 人评分
A+B for Input-Output Practice (IV) (C语言代码)浏览:479 |
WU-蓝桥杯算法提高VIP-交换Easy (C++代码)浏览:1176 |
【绝对值排序】 (C语言代码)浏览:889 |
C语言程序设计教程(第三版)课后习题8.9 (C语言代码)浏览:886 |
1908题解浏览:676 |
1118(求助_已解决)浏览:347 |
C二级辅导-同因查找 (C语言代码)浏览:607 |
2006年春浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:375 |
Pascal三角 (C语言代码)浏览:705 |
C语言程序设计教程(第三版)课后习题8.1 (C语言代码)浏览:755 |