Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
7811 邓小龙 二维数组的最大值与最小值 C++ Wrong Answer 0 MS 256 KB 484 2025-05-24 09:54:41

Tests(0/2):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ int n,b=INT_MIN,s=INT_MAX; cin>>n; int a[11][11]; for(int i=0;i<n;i++){ for(int j=0;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]<s){ s=a[i][j]; } if(a[i][j]>b){ b=a[i][j]; } } } cout<<s<<' '<<b; return 0; }


Run Info:

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