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

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<=8;i++){ for(int j=0;j<=9;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-----
-1866201088 1478926808