I'm new to Java, and programming in general. I recently started working with arrays, and came upon an exercise in the book that i thought id give a try. The goal is to read a file using the scanner class assign each number to a different cell in a 2d array. This is what i have for the method. But no matter how i change it, i cant seem to get the desired result. Either i end up getting the last number in every cell, or i get an error. Please help.
int row = 0;
int col = 0;
while (A[row][col] != -1)
{
for (row = 0; row < A.length; row++)
{
for (col = 0; col < A[row].length; col++)
A[row][col] = scan.nextInt();
}
}
assign each number to a different cell in a 2d arrayis kinda ... vague. – Brian Roach Sep 18 '11 at 4:49