主题:有10个整数,如何随机分成5组,急急~~~
cxcctv
[专家分:240] 发布于 2009-03-26 21:18:00
如题!
回复列表 (共2个回复)
沙发
无语问苍天 [专家分:30] 发布于 2009-03-28 19:15:00
import java.util.ArrayList;
import java.util.List;
import java.util.Random;
public class Test {
public static void main(String[] args) {
List nList = new ArrayList();
for(int i=0;i<10;i++){
nList.add(i);
}
List list = new ArrayList();
for(int i=0;i<5;i++){
for(int j=0;j<2;j++){
int temp =new Random().nextInt(nList.size());
list.add(nList.get(temp));
nList.remove(temp);
}
}
System.out.println(list.toString());
}
}
板凳
cxcctv [专家分:240] 发布于 2009-04-01 19:52:00
我已经解决了,跟我想的差不多,都是用的list,不知道还有没有其它的办法?
我来回复