Copying content from a two dimentional array to another
Hey
I have some 2d arrays that looks like this:
int[][] numbers ={{0,1,2,3,4,5},{2,2,3,3,2,2},{5,4,5,4,5,4},{1,0,2,9,8,3},{4,5,9,2,5,6},{3,3,0,0,0,0}};
int[][] numbers2={{0,1,2,3,4,5},{2,2,3,3,2,2},{5,4,5,4,5,4},{1,0,2,9,8,3},{4,5,9,2,5,6},{3,3,0,0,0,0,}};
int[][] numbers3={{0,1,2,3,4,5},{2,2,3,3,2,2},{5,4,5,4,5,4},{1,0,2,9,8,3},{4,5,9,2,5,6},{3,3,0,0,0,0}};
and ono other array where I want to store this data like this:
int[][] numb ={{0,1,2,3,4,5,2,2,3,3,2,2,5,4,5,4,5,4,1,0,2,9,8,3,4,5,9,2,5,6,3,3,0,0,0,0},{1,2,3,4,5,2,2,3,3,2,2,5,4,5,4,5,4,1,0,2,9,8,3,4,5,9,2,5,6,3,3,0,0,0,0},{1,2,3,4,5,2,2,3,3,2,2,5,4,5,4,5,4,1,0,2,9,8,3,4,5,9,2,5,6,3,3,0,0,0,0}};
In other words I want to take all data from numbers and put them in one row in numb(numbers2 in other and so on). I need to store them this way because I have to use them later, all data from numbers at a time, and so on.
Any ideas. Now I have been strugeling with this fir 2 days. Tnx

