Array Multiplication Program
Array Multiplication Program
package arrays;
import java.util.Scanner;
public class Multiplication {
private int [][] array1 = new int [3][3];
private int [][] array2 = new int [3][3];
private int [][] array3 = new int [3][3];
M.array1[x][y] = in.nextInt();
}
}
System.out.println("Enter the numbers for the second 3x3 array");
M.array2[a][b] = in.nextInt();
}
}
}
}
}
System.out.println("The matrix after product is:");
}
}