企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
# Java 程序:使用多维数组相加两个矩阵 > 原文: [https://www.programiz.com/java-programming/examples/add-matrix](https://www.programiz.com/java-programming/examples/add-matrix) #### 在此程序中,您将学习使用 Java 中的多维数组相加两个矩阵。 ## 示例:相加两个矩阵的程序 ```java public class AddMatrices { public static void main(String[] args) { int rows = 2, columns = 3; int[][] firstMatrix = { {2, 3, 4}, {5, 2, 3} }; int[][] secondMatrix = { {-4, 5, 3}, {5, 6, 3} }; // Adding Two matrices int[][] sum = new int[rows][columns]; for(int i = 0; i < rows; i++) { for (int j = 0; j < columns; j++) { sum[i][j] = firstMatrix[i][j] + secondMatrix[i][j]; } } // Displaying the result System.out.println("Sum of two matrices is: "); for(int[] row : sum) { for (int column : row) { System.out.print(column + " "); } System.out.println(); } } } ``` 运行该程序时,输出为: ```java Sum of two matrices is: -2 8 7 10 8 6 ``` 在上面的程序中,两个矩阵存储在 2d 数组中,即`firstMatrix`和`secondMatrix`。 我们还定义了行数和列数,并将它们分别存储在变量`row`和`column`中。 然后,我们初始化给定行和列的新数组,称为`sum`。 该矩阵数组存储给定矩阵的加法。 我们遍历两个数组的每个索引以添加和存储结果。 最后,我们使用`for`(`foreach`变量)循环遍历`sum`数组中的每个元素以打印元素。