在c++中用new申请三维数组
2016-07-27
19
在c++中用new申请三维数组2011-03-29int main(){int ***array;int i,j;int side=5,height=6,width=7;array=new int**[side];//申请side个面for(i=0;i<side;i++) //对每个面申请height行{array[i]=new int*[height];for(j=0;j<height;j++) //对每行申请width列array[i][j...