Answers for "how to create random numbers in java, but they can't repeat"

0

generate random number in java within a range without repeating with android studio

public void NextRandom(View view) // button clicked function
    {
        int previousIndex = index;
        index = rand.nextInt(array.size());

        while (index == previousIndex)
        {
            index = rand.nextInt(array.size());
        }
    }
Posted by: Guest on January-28-2020

Code answers related to "how to create random numbers in java, but they can't repeat"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language