我有一个快速的问题,我正在测试 Math.random 功能。我正在尝试将(int) (Math.random()*6)+1
100 个框中的每一个的结果分配给一个数组以存储值。但我收到一个错误,它不是一个声明。有人可以提供一些指导吗?
public shoes(int[] pairs)
{
System.out.println("We will roll go through the boxes 100 times and store the input for the variables");
for(int i=0; i < 100; i++)
{
//("Random Number ["+ (i+1) + "] : " + (int)(Math.random()*6));
int boxCount[i] = (int) (Math.random()*6) + 1;
}
}