gpt4 book ai didi

Java arraylist 掷骰子

转载 作者:行者123 更新时间:2023-12-01 22:29:23 24 4
gpt4 key购买 nike

我是 Java 新手,我正在尝试创建一个数组列表。

我制作了一个小程序,要求用户提供要掷的骰子数量:

    System.out.println("How many dices do you want to throw?");
int diceAmount = input.nextInt();

然后我做了一个循环来打印骰子,但我无法让它使骰子的数量变得随机。我还必须计算骰子总数和随机结果:

    for (int i = 1; i <= diceAmount; i++) {
System.out.print(i + "-");

最佳答案

Random rand = new Random();

(int i = 1; i <= diceAmount; i++) {
// roll the dice once
int roll1 = rand.nextInt(6) + 1;
System.out.print(i + "-" + roll1);
}

更新:

这是对数字进行求和的方法。假设您每次掷 2 个骰子。

    Random rand = new Random();
// roll the dice once
int roll1 = rand.nextInt(6) + 1;
int roll2 = rand.nextInt(6) + 1;
sum = roll1 + roll2;
System.out.println("You got " + sum + ". Not bad!");

关于Java arraylist 掷骰子,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28138122/

24 4 0