Run ID:127367
提交时间:2025-07-27 15:32:42
#include <bits/stdc++.h> using namespace std; int main() { int a[4][4],n; for(int i=1;i<=3;i++) for(int j=1;j<=3;j++) cin>>a[i][j]; for(int i=1;i<=3;i++) for(int j=1;j<=3;j++) cout<<a[i][j]<<" "; cout<<endl; return 0; }