برنامه نویس چاق
#include <iostream>
#include <fstream>
#include <math.h>
using namespace std;
int main()
{
int counter;
int a,b;
ifstream in ("chaq.txt");
in >> counter;
for ( ;counter!=0;counter--)
{
in >> a >> b;
int array[a][b];
for(int i=0;i<a;i++)
for(int j=0;j<b;j++)
in >> array[i][j];
int tempx,tempy;
tempx=tempy=0;
int gattarin=array[0][0];
for(int i=0;i<a;i++)
{
int flag=0;
for(int j=0;j<b;j++)
{
if(array[i][j]>gattarin)
{ tempx=i; tempy=j; flag=1; break; }
if(array[i+1][j]>gattarin)
{ tempx=i+1; tempy=j; flag=1; break; }
if(array[i+1][j+1]>gattarin)
{ tempx=i+1; tempy=j+1; flag=1; break; }
}
if (flag==1) break ;
}
if(tempx==0)
cout<<" Ja be Jaee="<<tempy<<endl;
else
if(tempy==0)
cout<<" Ja be Jaee="<<tempx<<endl;
else
cout<<" Ja be Jaee="<< static_cast <int> ( sqrt( pow(tempx,2)+pow(tempy,2) ) ) <<endl;
}
return 0;
}