格式化骰子输出 Java

Formatting Dice Roll Output Java

我创建了一个代码,用户可以在其中输入掷骰子的次数。然后程序输出面值、每张脸出现的次数以及每张脸出现的百分比。我必须使用 System.out.printf() 来格式化输出。

我的问题是,每当我输入一个大于 9 的 roll 时,我的输出格式就会完全丢失...这是我的代码:

package variousprograms;
import java.util.*;
public class DiceRoll 
{
    public static void main(String[] args)
    {
        Scanner input = new Scanner(System.in);
        int[] array = new int[7];
        System.out.print("Enter number of rolls: ");
        int roll = input.nextInt();

        System.out.printf("%s%8s%6s\n", "#", "Count", "Freq");
        for (int i = 1;i<=roll;i++)
        {
            array[(int)(6*Math.random()) + 1]++;
        }
        for(int a = 1; a<array.length; a++)
        {
            double percentage = ((double) array[ a ]/roll)*100;
            System.out.printf("%1d%6d%15.2f%%\n", a, array[ a ], percentage);
        }
        System.out.printf("%s%2s%10s\n", "Total", roll, "100%");


    }
}

如有任何帮助,我将不胜感激!

A possible solution is the below:

public static void main(String[] args) {
        Scanner input = new Scanner(System.in);
        int[] array = new int[7];
        System.out.print("Enter number of rolls: ");
        int roll = input.nextInt();

        System.out.printf("%-12s%-12s%-12s\n", "#", "Count", "Freq");
        for (int i = 1; i <= roll; i++) {
            array[(int) (6 * Math.random()) + 1]++;
        }
        for (int a = 1; a < array.length; a++) {
            double percentage = ((double) array[a] / roll) * 100;
            System.out.printf("%-12d%-12d%5.2f%%\n", a, array[a], percentage);
        }
        System.out.printf("%-12s%-14s%-12s\n", "Total", roll, "100%");
    }

Integer formatting

%d   : will print the integer as it is.
%6d  : will print the integer as it is. If the number of digits is less than 6, the output will be padded on the left.
%-6d : will print the integer as it is. If the number of digits is less than 6, the output will be padded on the right.
%06d : will print the integer as it is. If the number of digits is less than 6, the output will be padded on the left with zeroes.
%.2d : will print maximum 2 digits of the integer.

String formatting

%s    : will print the string as it is.
%15s  : will print the string as it is. If the string has less than 15 characters, the output will be padded on the left.
%-6s  : will print the string as it is. If the string has less than 6 characters, the output will be padded on the right.
%.8d  : will print maximum 8 characters of the string.

Floating point formatting

%f    : will print the number as it is.
%15f  : will print the number as it is. If the number has less than 15 digits, the output will be padded on the left.
%.8f  : will print maximum 8 decimal digits of the number.
%9.4f : will print maximum 4 decimal digits of the number. The output will occupy 9 characters at least. If the number of digits is not enough, it will be padded

完整教程here