gpt4 book ai didi

Java 骰子模拟

转载 作者:行者123 更新时间:2023-11-30 03:15:45 24 4
gpt4 key购买 nike

我正在编写一个掷骰子程序。该代码可以很好地计算出频率的面和数量。如何计算每张脸出现频率的百分比?

 import java.util.Random;

public class Dice{
public static void main (String[] args){
Random random = new Random(); // Generates random numbers
int[] array = new int[ 7 ]; // Declares the array

//Roll the die 10000 times
for ( int roll = 1; roll <=10000; roll++ ) {
/*++array[1 + random.nextInt(6)];*/
int dice = 1 + random.nextInt(6);
++array[dice];
}
System.out.printf("%s%10s\n", "Face", "Frequency");

// outputs array values
for (int face = 1; face < array.length; face++) {
System.out.printf("%4d%10d\n", face, array[face]);
}
}
}

最佳答案

频率就是每张脸的数量除以总数量。

for (int face = 1; face < array.length; face++) {
System.out.printf("%4d%10f\n", face, array[face] / 10000.0);
}

必须使用 double 值执行除法(否则,将执行整数除法且结果始终为 0),这解释了为什么我使用 10000.0 而不是 10000.

我还将字符串格式从 %10d 更改为 %10f 因为您想要打印十进制数,而不是整数。请参阅Formatter所有 token 列表的 Javadoc。

另外,我建议您创建一个局部变量来保存总计数,以免重复两次。

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

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