How can i extract data from a 2d array.. e and b are indexes of the array
int e = IO.readInt();
int b = IO.readInt();
int a[][] = { { 8, 2, 6, 5 }, // row 0
{ 6, 3, 1, 0 }, // row 1
{ 8, 7, 9, 6 } };
for (int i = 0; i < a.length; i++) {
for (int j = 0; j < a[0].length; j++) {
a[i][j] = i;
System.out.print(a[i][j] + " ");
}
System.out.println("");
}`enter code here`
a[i][j] = i;doesn't seem helpful. – John Flatness Apr 10 '11 at 18:41