使用 Java 打印二维数组或矩阵
在本文中,我们将尝试在控制台中打印一个数字数组或矩阵,就像我们通常写在纸上一样。
为此,逻辑是逐个访问数组中的每个元素,并用空格将它们打印成一行,当矩阵中的一行结束时,我们还会更改行。
范例
public class Print2DArray { public static void main(String[] args) { final int[][] matrix = { { 1, 2, 3 }, { 4, 5, 6 }, { 7, 8, 9 } }; for (int i = 0; i < matrix.length; i++) { //this equals to the row in our matrix. for (int j = 0; j < matrix[i].length; j++) { //this equals to the column in each row. System.out.print(matrix[i][j] + " "); } System.out.println(); //change line on console as row comes to end in the matrix. } } }
结果
1 2 3 4 5 6 7 8 9
广告