我正在检查 3600 万次掷骰后骰子总数的频率。我计划制作一个 arrayList 并在 11 个结果中的任何一个出现时将其用作计数系统。如何将 1 添加到列表中的一项?
int die1, die2, dicetotal;
ArrayList<Integer> results = new ArrayList<Integer>();
results.add(0); //for the 11th
for(int i = 0; i < 36000000; i++){
die1 = (int)(Math.random() * 6) + 1
die2 = (int)(Math.random() * 6) + 1
dicetotal = die1 + die2;
Switch (dicetotal){
case 2: results.set(0, CURRENT + 1);
...
...
...
}