码迷,mamicode.com
首页 > 其他好文 > 详细

模拟摇奖:从1-36中随机抽出8个不重复的数字

时间:2016-09-13 22:27:25      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:

模拟摇奖:从1-36中随机抽出8个不重复的数字

 1         Random ran=new Random();
 2         int [] a=new int [8];
 3         for(int i=0;i<8;i++)
 4         {
 5             a[i]=ran.nextInt(35);
 6                     for(int j=0;j<i;j++)
 7                     {if(a[i]==a[j])
 8                     {
 9                         i--;
10                         break;
11                     }
12                 
13             }
14                     System.out.println(a[0]);
15                     System.out.println(a[1]);
16                     System.out.println(a[2]);
17                     System.out.println(a[3]);
18                     System.out.println(a[4]);
19                     System.out.println(a[5]);
20                     System.out.println(a[6]);
21                     System.out.println(a[7]);
22         }
23         

技术分享

 

模拟摇奖:从1-36中随机抽出8个不重复的数字

标签:

原文地址:http://www.cnblogs.com/zs6666/p/5869841.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!