标签:保存 class auto 之间 编号 产生 随机 eth random
1 public class Test4 { 2 // 双色球彩票 3 public static void main(String[] args) { 4 // TODO Auto-generated method stub 5 6 int[] balls = new int[33]; 7 for(int i=0;i<33;i++){ 8 balls[i]=i+1; 9 } 10 int[] jg=new int[7]; //存放机选号码的数组 11 int j=0; 12 boolean[] flags = new boolean[33]; 13 int index; 14 for(int i=0;i<6;i++){ 15 do{ 16 index = (int)(Math.random()*33+1); 17 if(flags[index]==false){ 18 // System.out.print(balls[index]+" "); //红球 19 jg[j++]=balls[index]; 20 flags[index]=true; 21 break; 22 } 23 }while(flags[index]); 24 25 } 26 jg[6]=(int)(Math.random()*16+1); // 蓝球 27 28 System.out.println("机选号码为: "); 29 for(int e:jg){ 30 System.out.print(e+" "); 31 } 32 } 33 }
标签:保存 class auto 之间 编号 产生 随机 eth random
原文地址:http://www.cnblogs.com/simonwu93/p/7183878.html