用Java打印2D数组或矩阵
在这篇文章中,我们将尝试以与通常在纸上书写相同的方式在控制台上打印数字数组或数字矩阵。
为此,逻辑是一个接一个地访问数组的每个元素,并使其以空格分隔打印,当行到达矩阵中的emd时,我们还将更改行。
示例
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
热门推荐
10 钱包祝福语简短10字
11 文艺结婚祝福语短语简短
12 发廊元旦祝福语大全简短
13 女朋友考试祝福语简短
14 带清的简短祝福语
15 理科元旦祝福语大全简短
16 离别简短的祝福语大全
17 妈妈给宝贝祝福语简短
18 写给老师祝福语简短大学