gpt4 book ai didi

java - 如何使用 println 按单位打印同一列中的数字列表?

转载 作者:行者123 更新时间:2023-12-02 01:32:48 24 4
gpt4 key购买 nike

我承认这是一个愚蠢的问题,但它只是我的大型计算项目的一小部分,我无法修复。为了打破它,我想在新行上打印我的数组值。

为了美观,我需要将值的单位放在同一列中......所以当我编码时会出现这种情况:

1

2

3

10

111

0

我的代码:

public void display() {

int j;

System.out.println(name);
for (j = 0; j < treesOfForest.length; j++) {
if (treesOfForest[j] != null) {
System.out.print(" ");
System.out.printf("%d",(j+1));
System.out.println( " : " + treesOfForest[j]);
}
}
}
<小时/>

我的预期输出:

Expected Results

最佳答案

如果您只想实现间距,一种选择是使用 String#format:

int[] treesOfForest = new int[] {1, 2, 3, 10, 111, 0};
for (int j=0; j < treesOfForest.length; j++) {
System.out.println(String.format("%3d", treesOfForest[j]));
}

1
2
3
10
111
0

关于java - 如何使用 println 按单位打印同一列中的数字列表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55795522/

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