cin>>w>>h;
char **a=new char*[h];
for(int i=0;i
a[i]=new char[w];
用完后
for(int i=0;i
delete[] p;