Run ID:126077

提交时间:2025-07-16 11:03:18

#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(a[i][j]>max) max=a[i][j]; cout<<max; return 0; }