A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

  1. public class demo {
  2.         public static void main(String[] args) {
  3.                 HashSet<Integer> hs = getRandom();
  4.                 System.out.println(hs.toString());
  5.         }
  6.         public static HashSet<Integer> getRandom() {
  7.                 Random r = new Random();
  8.                 HashSet<Integer> hs = new HashSet<Integer>();
  9.                 while(hs.size()<10){
  10.                         hs.add(r.nextInt(20)+1);                       
  11.                 }
  12.                 return hs;
  13.         }
  14. }
复制代码

3 个回复

倒序浏览
谁交你的啊
回复 使用道具 举报
好复杂,其实代码可以简单点
回复 使用道具 举报
挺好的..
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马