Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
107336 付博苏逸 二维数组的最大值与最小值 C++ Wrong Answer 1 MS 268 KB 297 2025-01-17 15:24:25

Tests(1/2):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ int n,max=0,min=999; int a[10][10]; cin>>n; for(int i=0;i<=2;i++){ for(int j=0;j<=2;j++){ cin>>a[i][j]; if(max<a[i][j]) max = a[i][j]; if(min>a[i][j]) min = a[i][j]; } } cout<<min<<" "<<max; return 0; }


Run Info:

------Input------
4 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
------Answer-----
1 16
------Your output-----
1 9