用java做的彩票自动选号系统

时间:2014-04-26 15:23:55
【文件属性】:

文件名称:用java做的彩票自动选号系统

文件大小:4KB

文件格式:RAR

更新时间:2014-04-26 15:23:55

*

用java做的彩票自动选号系统package com.cp; import java.util.ArrayList; import java.util.Arrays; import java.util.Random; public class CaiPiaoMach { private int max; private int count; public CaiPiaoMach(int max, int count) { super(); this.max = max; this.count = count; } public int[] choujiangMethod() { if(count>=max) { System.out.println("您设定的抽奖条件有错误!"); return null; } //准备好摇奖机里的抽奖小球 ArrayList list=new ArrayList(); for(int i=1;i<=max;i++) { list.add(i); } //随机生成号码位置 Random random=new Random(); //存放结果集合 int[] result=new int[count]; for(int j=0;j


【文件预览】:
caipiaoproj
----.project(387B)
----bin()
--------com()
----.settings()
--------org.eclipse.jdt.core.prefs(629B)
----src()
--------com()
----.classpath(301B)

网友评论

  • 这个系统还需要改进,显示有错误。
  • 很简单 比较容易看懂