Run ID:42651

提交时间:2022-11-23 22:04:43

#include<bits/stdc++.h> using namespace std; int main(){ long long a[5][5],max=0; for(int i=1;i<=3;i++){ for(int j=1;j<=4;j++){ cin>>a[i][j]; } } for(int i=1;i<=3;i++){ for(int j=1;j<=4;j++){ if(a[i][j]>max){ max=a[i][j]; } } } cout<<max; return 0; }