产生不重复的数字

import java.util.HashSet;

public class Rand {

public Rand() {
  HashSet<Integer> hs=new HashSet<Integer>();//HashSet像集合一样,产生不重复的数字
  while(true){
    int a=(int)(Math.random()*100);
    if(a>0){
      hs.add(a);
    }
    if(hs.size()==13){
      break;
    }
  }
  System.out.println(hs);


}


public static void main(String[] args) {
  new Rand();

}

}

 

posted @ 2014-08-25 21:58  天&泽  阅读(189)  评论(0编辑  收藏  举报