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

Tests(0/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<=10;i++){ for(int j=0;j<=10;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------
3 1 2 3 4 5 6 7 8 9
------Answer-----
1 9
------Your output-----
-1222209695 1222210200