Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
156133 李亭绪 二维数组的最大值与最小值 C++ Wrong Answer 1 MS 272 KB 644 2026-06-24 18:50:48

Tests(0/2):


Code:

#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ int n,ax=-100000,in=10000000; cin>>n; int a[11][11]; for(int i=1;i<=n;i++){ for(int j=1;j<=n;j++){ cin>>a[i][j]; } } for(int i=1;i<=n;i++){ for(int j=1;j<=n;j++){ if(a[i][j]>ax){ ax=a[i][j]; } if(a[i][j]<in){ in=a[i][j]; } } } cout<<ax<<' '<<in; return 0; }


Run Info:

------Input------
3 1 2 3 4 5 6 7 8 9
------Answer-----
1 9
------Your output-----
9 1