public class Test{
public static void main(String[]args){
int[][] a = new int[2][3];
int[][] b = new int[3][4];
int[][] c = new int[3][4];
//a賦值
for(int i=0;i<2;i++){
for(int j=0;j<3;j++){
a[i][j]=1;
}
//b賦值
for(int i=0;i<3;i++){
for(int j=0;j<4;j++){
b[i][j]=2;
//相乘運算
for(int k=0;k<3;k++){
c[i][j]+=a[i][k]*b[k][j];
//列印結果
System.out.print(c[i][j]+"\t");
System.out.println();
public class Test{
public static void main(String[]args){
int[][] a = new int[2][3];
int[][] b = new int[3][4];
int[][] c = new int[3][4];
//a賦值
for(int i=0;i<2;i++){
for(int j=0;j<3;j++){
a[i][j]=1;
}
}
//b賦值
for(int i=0;i<3;i++){
for(int j=0;j<4;j++){
b[i][j]=2;
}
}
//相乘運算
for(int i=0;i<2;i++){
for(int j=0;j<4;j++){
for(int k=0;k<3;k++){
c[i][j]+=a[i][k]*b[k][j];
}
}
}
//列印結果
for(int i=0;i<2;i++){
for(int j=0;j<4;j++){
System.out.print(c[i][j]+"\t");
}
System.out.println();
}
}
}