Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
188 yangzhiyu 计算鞍点 C++ 运行出错 0 MS 268 KB 509 2021-05-23 22:00:52

Tests(0/3):


#include<iostream> using namespace std; int main() { int max[5]={},min[5]={10000,10000,10000,10000},a[5][5]; for(int i=0;i<5;i++){ for(int j=0;j<5;j++){ cin>>a[i][j]; if(a[i][j]>a[i][max[i]]){ max[i]=j; } if(a[i][j]<a[min[j]][j]){ min[j]=i; } } } int found=1; for(int i=0;i<5;i++){ for(int j=0;j<5;j++){ if(max[i]==j && min[j]==i){ cout<<i+1<<" "<<j+1; cout<<a[i][j]<<" "; found=0; } } } if(found){ cout<<"not found"; } }


测评信息: