#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+

雷镐泽  •  5天前


#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; 












 


评论: