gpt4 book ai didi

Java数组矩阵数

转载 作者:行者123 更新时间:2023-11-29 04:33:00 25 4
gpt4 key购买 nike

这是我写的代码

class Printsqu {
public static void main(String[] args) {
int[][] array = { { 1,5,9,13 }, { 2,6,10,14 }, { 3,7,11,15 },
{ 4,8,12,16 }, };

for (int i = 0; i < array.length; i++) {
for (int j = 0; j < array[i].length; j++) {
System.out.print( array[i][j]);
}
System.out.println();
}
}
}

输出应该是

  1  5  9 13
2 6 10 14
3 7 11 15
4 8 12 16

这个但是打印出来了

1593
261014
371115
481216

所以我在它们之间添加了\t 但它跳得太多了。

有什么办法可以解决这个问题吗?

有趣的是数字之间的空格不一样

如果你们添加有关代码和解释的详细信息,我将不胜感激。

最佳答案

试试这个

public static void main(String[] args) {
int[][] array = { { 1,5,9,13 }, { 2,6,10,14 }, { 3,7,11,15 },
{ 4,8,12,16 }, };

for (int i = 0; i < array.length; i++) {
for (int j = 0; j < array[i].length; j++) {

System.out.printf("%2d ", array[i][j]);
}
System.out.println();
}
}

关于Java数组矩阵数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43021225/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com