Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
4699 高振轩 二维数组的最大值与最小值 C++ Wrong Answer 0 MS 264 KB 338 2024-09-07 15:42:40

Tests(0/2):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ int a[10][10],n,m=0,b=9999; cin>>n; for(int i=0;i<n;i++){ for(int j=0;j<n;j++) cin>>a[i][j]; } for(int i=0;i<n;i++){ for(int j=0;j<n;j++){ if(a[i][j]>m){ m=a[i][j]; } if(a[i][j]<b){ b=a[i][j]; } } }cout<<m<<" "<<b<<endl; }


Run Info:

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