int a=math.floor(math.random()*5);//[0,4] int b=math.floor(math.random()*5); for (var i = 0; i < 5; i++) { for (var j = 0; j < 5; j++) { } }
使用队列,随机取数,例如
LinkedList list=new LinkedList();
Random r=new Random();
...
Object o = list.remove(r.nextInt(list.size));