mirror of
https://github.com/c0de-archive/hacktoberfest-2018.git
synced 2024-12-22 13:22:39 +00:00
commit
760bff0748
26
code/dynamic_2d_array.cpp
Normal file
26
code/dynamic_2d_array.cpp
Normal file
@ -0,0 +1,26 @@
|
||||
#include <iostream>
|
||||
#include<vector>
|
||||
|
||||
using namespace std;
|
||||
|
||||
int main() {
|
||||
int m;
|
||||
cin>>m;
|
||||
int *arr = new int[m*m];
|
||||
for(int i=0;i<m;i++)
|
||||
{
|
||||
for(int j=0;j<m;j++)
|
||||
{
|
||||
cin>>arr[i*m+j];
|
||||
}
|
||||
}
|
||||
for(int i=0;i<m;i++)
|
||||
{
|
||||
cout<<endl;
|
||||
for(int j=0;j<m;j++)
|
||||
{
|
||||
cout<<arr[i*m+j]<<"\t";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user