好的,基本上,我想要做的是创建并打印一个包含100个随机数的数组。我的尝试似乎失败了...而不是得到100个随机数,我似乎是从0-99顺序得到数字。有人可以解释我如何解决这个问题吗?非常感谢。
public static void enterRandom()
{
System.out.println("Welcome to the random number generator and arranger!");
System.out.println("Now, watch me generate 100 random numbers, and print them in order...");
System.out.println("...");
System.out.println("...");
System.out.println("...");
Random what = new Random ();
int[] store = new int [100];
for (int i = 0; i <= store.length; i++)
{
store[i] = what.nextInt(100); //not in random?
System.out.println(i);
}
return;
}
}
答案 0 :(得分:2)
正如所有注释所述,您正在打印变量i
,而不是数组中的当前索引。因此,请将System.out.println(i);
替换为System.out.println(store[i]);
要修复ArrayIndexOutOfBounds异常,请将for (int i = 0; i <= store.length; i++)
替换为for (int i = 0; i < store.length; i++)