适用于魔术广场的Printf

时间:2018-02-20 06:37:53

标签: java printf magic-square

所以这是我下面的代码:

public void printSquare() {
    for (int row = 0; row < square.length; row++) {
        for (int col = 0; col < square.length; col++) {
            System.out.printf(square[row][col] + "%-3c", ' ');
        }
        System.out.println();   
    }
}

我正在尝试打印它们看起来像这样:

enter image description here

但我的输出是:

***** Square 2 *****

30  39  48  1  10  19  28  
38  47  7  9  18  27  29  
46  6  8  17  26  35  37  
5  14  16  25  34  36  45  
13  15  24  33  42  44  4  
21  23  32  41  43  3  12  
22  31  40  49  2  11  20

我现在一直在乱读printf一段时间了,我似乎无法弄清楚如何整齐地打印它。我在学校的第二个学期勉强打Java,所以我还不擅长编码。任何建议都会有所帮助。

如果我的编码非正统或看起来很糟糕,请打电话给我,以便我可以修复它。

谢谢。

2 个答案:

答案 0 :(得分:1)

您可以尝试添加标签空间,而不是手动添加空格。标签空间将处理带空格的数字问题

BAs

<强>输出

public static void printSquare(int[][] square) {
    for (int row = 0; row < square.length; row++) {
        for (int col = 0; col < square.length; col++) {
            System.out.print(square[row][col]+"\t");
        }
        System.out.println();
    }
}

答案 1 :(得分:1)

要打印一个只有四个字符的数字(用空格填充),请使用以下格式:

System.out.printf("%4d", square[row][col]);