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

java数组实现买彩票(平移覆盖思想)

时间:2016-09-13 19:07:42      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:

 1 package com.wh.shuzu;
 2 /**
 3  * 买彩票
 4  * @author 贾相如同学
 5  * 平移覆盖思想
 6  */
 7 public class Lotery3 {
 8 
 9     public static void main(String[] args) {
10         int a[] = {1,2,3,4,5,6,7,8,9,10,11};
11         for(int i =0;i<5;i++){
12             //每覆盖一次,随机数的范围就少一个
13             int temp = (int)(Math.random()*(11-i));
14             //打印输出随机数的数组值
15             System.out.println(a[temp]);
16             //从第temp个数开始平移
17             for(int j = temp;j<a.length-1;j++) 
18                 a[j] = a[j+1];
19         }
20     }
21 }

 

java数组实现买彩票(平移覆盖思想)

标签:

原文地址:http://www.cnblogs.com/1020182600HENG/p/5869317.html

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