Run ID:139005
提交时间:2025-12-01 16:09:55
#include<bits/stdc++.h> using namespace std; int main(){ int b[2][3]={{1,2,3},{4,5,6}}; for(int i=0;i<2;i++){ for(int j=0;j<3;j++){ cout<<b[i][j]<<" "; cout<<endl; } } return 0; }