I am trying to swap values in a 2D array, but I get an "out of bounds" run time error.
What is wrong?
public class Main {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
//Q1
int row = 3;
int colum = 5;
//Declare 2d array
int [][] matrix = new int [row][colum];
//Create array and input values
Scanner input = new Scanner(System.in);
System.out.println("Enter " + matrix.length + " rows and "
+ matrix[0].length + " colums: \n");
for (row = 0; row < matrix.length; row++) {
for (colum = 0; colum < matrix[row].length ; colum++) {
matrix[row][colum] = input.nextInt();
}
}
System.out.println("\nMultiplication table");
System.out.println("--------------------");
//Print the array
for (row = 0; row < matrix.length; row++ ) {
for (colum = 0; colum < matrix[row].length; colum++ ) {
System.out.printf("%4d", matrix[row][colum]);
}
System.out.println();
}
//Q2 - Make the values swapable
Scanner input1 = new Scanner(System.in);
System.out.println("\n1: Modify a value. ");
System.out.println("0: Exit the application");
int selection = input1.nextInt();
switch(selection) {
case 0:
System.exit(0);
break;
case 1:
System.out.println("\nPlease enter the row you would like to change: " );
Scanner input2 = new Scanner(System.in);
int changeRow = input2.nextInt();
System.out.println("You entered: " + changeRow);
System.out.println("Please enter the colum you would like to change: " );
Scanner input3 = new Scanner(System.in);
int changeColum = input3.nextInt();
System.out.println("You entered: " + changeColum);
error---> int temp = matrix[row][colum];
matrix[row][colum] = matrix[changeRow][changeColum];
matrix[changeRow][changeColum] = temp;
System.out.println("The value in row " + changeRow + "and colum " + changeColum + "is now changed to " + temp);
break;
}
}
}
public class Main {in your code tag. – Richards Apr 16 '11 at 20:56