Run ID:127352

提交时间:2025-07-27 15:17:17

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