Run ID:125533

提交时间:2025-07-15 09:03:55

#include<bits/stdc++.h> using namespace std; int main(){ int a[3][4],max=0; for(int i=1;i<=3;i++) for(int j=1;j<=4;j++) cin>>a[i][j]; max=a[1][1]; 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; }