Java程序减去两个矩阵。
以下是必需的程序。
示例
public class Tester {public static void main(String args[]) {
//矩阵1-
int a[][] = { { 1, 3, 4 }, { 2, 4, 3 }, { 3, 4, 5 } };
//矩阵2-
int b[][] = { { 1, 3, 4 }, { 2, 4, 3 }, { 1, 2, 4 } };
//结果矩阵
int c[][] = new int[3][3]; // 3 rows and 3 columns
//减去并打印矩阵
for (int i = 0; i < 3; i++) {
for (int j = 0; j < 3; j++) {
c[i][j] = a[i][j] - b[i][j];
System.out.print(c[i][j] + " ");
}
System.out.println();
}
}
}
输出结果
0 0 00 0 0
2 2 1
以上是 Java程序减去两个矩阵。 的全部内容, 来源链接: utcz.com/z/317003.html