You are on page 1of 1

#include <iostream>

using namespace std;


int a[4][5];
int main (){
for(int i=0;i<4;i++){
for(int j=0;j<5;j++){
cout<<"Digite un numero"<<endl;
cin>>a[i][j];
}
}
cout<<"los numeros son"<<endl;
for(int i=0;i<4;i++){
cout<<endl;
for(int j=0;j<5;j++){
cout<<a[i][j]<<" ";
}
}
cout<<"\n";
system("pause");
return 0;
}

You might also like