I would like my array to from index to index like thisfor example: (0,0), (1,0), (2,0) etc. I've tried what seems like it should be the right way, but my loops stop after the first column and I get an index out of bounds exception.
Here's what I did:
int[][] array2d =
{
{4,5, 3,8},
{8,3,99,6},
{5,7, 9,1}
};
int currentRow = 0;
for (int currentColumn = 0; currentColumn < (array2d[currentRow].length); currentColumn++)
{
for(currentRow = 0; currentRow < array2d.length; currentRow++)
{
System.out.println(array2d[currentRow][currentColumn]);
}
}
You've ran the columns before the rows and because its a 2d array of length 3x4 , Its giving a indexOutOfBoundsException whilest iterating through the array.