码迷,mamicode.com
首页 > 编程语言 > 详细

采用多种算法,模拟摇奖:从1-36中随机抽出8个不重复的数字

时间:2016-09-13 20:40:18      阅读:118      评论:0      收藏:0      [点我收藏+]

标签:

package liu0913;

import java.util.Random;

public class Yaohao {

	public static void main(String[] args) 
	{	
		Random ran=new Random();
		int[] arr=new int[8];       

		for(int i=0;i<8;i++)
		{
			arr[i]=ran.nextInt(36);
			for(int j=0;j<i;j++)
			{
				if(arr[i]==arr[j])
				{
					i--;
				}
			}
		}
		System.out.println(arr[0]+" "+arr[1]+" "+arr[2]+" "+arr[3]+" "+arr[4]+" "+arr[5]+" "+arr[6]+" "+arr[7]);
	}
	
}

  技术分享

采用多种算法,模拟摇奖:从1-36中随机抽出8个不重复的数字

标签:

原文地址:http://www.cnblogs.com/liuyanzeng/p/5869553.html

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