I\'m declaring a 2d Array with 100 rows and columns. Im trying to get the user to dictate the numbers that go into the array. Im supposed to store the values without storing the
You'll need to use nested for loops for a 2-d array (one for rows and one for columns):
for
for (int i = 0; i < nums.length; ++i) for (int j = 0; j < nums[i].length; ++j) { nums[i][j] = scan.nextInt(); }