Generating Unique Random Numbers in Java

后端 未结 21 2549
不思量自难忘°
不思量自难忘° 2020-11-21 07:45

I\'m trying to get random numbers between 0 and 100. But I want them to be unique, not repeated in a sequence. For example if I got 5 numbers, they should be 82,12,53,64,32

21条回答
  •  天涯浪人
    2020-11-21 08:08

    Check this

    public class RandomNumbers {
    
        public static void main(String[] args) {
            // TODO Auto-generated method stub
            int n = 5;
            int A[] = uniqueRandomArray(n);
            for(int i = 0; i

提交回复
热议问题