#include <iostream>
using namespace std;
int main(){
int x,y;
cout<<"masukkan baris untuk ordo matrix : ";
cin>>x;
cout<<"masukkan kolom untuk ordo matrix : ";
cin>>y;
cout<<endl;
cout<<"ordo matrix = "<<x<<" x "<<y<<"\n";
int matrix1[x][y];
int i,j;
for(i=0;i<x;i++){
for(j=0;j<y;j++){
cout<<"masukkan martrix baris ke-"<<i+1<<" kolom ke-"<<j+1<<" : ";
cin>>matrix1[i][j];
}
}
cout<<endl;
cout<<"matrix"<<endl;
for(i=0;i<x;i++){
for(j=0;j<y;j++){
cout<<matrix1[i][j]<<" ";
}
cout<<endl;
}
cout<<endl;
return 0;
}
using namespace std;
int main(){
int x,y;
cout<<"masukkan baris untuk ordo matrix : ";
cin>>x;
cout<<"masukkan kolom untuk ordo matrix : ";
cin>>y;
cout<<endl;
cout<<"ordo matrix = "<<x<<" x "<<y<<"\n";
int matrix1[x][y];
int i,j;
for(i=0;i<x;i++){
for(j=0;j<y;j++){
cout<<"masukkan martrix baris ke-"<<i+1<<" kolom ke-"<<j+1<<" : ";
cin>>matrix1[i][j];
}
}
cout<<endl;
cout<<"matrix"<<endl;
for(i=0;i<x;i++){
for(j=0;j<y;j++){
cout<<matrix1[i][j]<<" ";
}
cout<<endl;
}
cout<<endl;
return 0;
}
dan yang akan muncul seperti ini :