我有一个循环,它将随机生成的整数分配到一个数组中。我需要一种方法来确保相同的整数不会两次输入到数组中。
我认为在整个循环中创建一个循环会起作用,但我不确定在这里执行什么。
int wwe[] = new int[9];
for(int i = 0; i < 9 ; i++){
int randomIndex = generator.nextInt(wwe.length);
wwe[i] = randomIndex;
System.out.println(wwe[i]);
System.out.println("########");
for(int j = 0; j < 9; j++){
System.out.println("This is the inner element " + wwe[j]);
}
}