我有这门课,它对我来说很好。它给出5位随机数。我无法实现的是 5 个数字彼此不同,我的意思是在 5 个数字中没有重复数字。
import java.util.Random;
public class Test
{
public int[] dedo()
{
Random diceRoller = new Random();
int[] cifra = new int[5];
for (int i = 0; i < cifra.length; i++)
{
int roll = diceRoller.nextInt(9);
cifra[i] = roll;
System.out.print(roll);
}
return cifra;
}
}