生成动态二维数组
摘要:
1 #include 2 using namespace std; 3 void make2DArray(int **&x, int rows, int cols) 4 { 5 x = new int*[rows]; 6 for(int i = 0; i > rows >> cols;21 make2DArray(x, rows, cols);22 for(int i = 0; i < rows; i++)23 for(int j = 0; j < cols; j++)24 x[i][j] = num++;25 ... 阅读全文
posted @ 2014-04-13 15:16 stackhacks 阅读(194) 评论(0) 推荐(0)
浙公网安备 33010602011771号