Run ID:11984

提交时间:2021-05-18 16:44:33

#include <bits/stdc++.h> using namespace std; int a[5][5]; int main() { 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++) cout << setw(4) << a[i][j]; cout << endl; } return 0; }