欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

杭电OJ2022

程序员文章站 2022-07-13 17:37:12
...

杭电OJ2022

我代码用了C和c++的头函数 编译器记得选择G++ 不然无法AC

#include<stdio.h>
#include<cmath>
int main(){
	int m = 0,n = 0;
	int a[100][100];
	while(scanf("%d %d",&m,&n)!=EOF){
		int x=0,y=0,temp = 0;
		for(int i= 0;i<m;i++){
			for(int j = 0;j<n ;j++){
				scanf("%d",&a[i][j]);
			}
		}
		temp = a[0][0];
		for(int i =0;i<m;i++){
			for(int j =0;j<n;j++){
				if(abs(a[i][j])>abs(temp)){
					x=i;
					y=j;
					temp = a[i][j];
				}
			}
		}
		printf("%d %d %d\n",x+1,y+1,temp);
	}
	return 0;
}