今天在整理资料库的时候,突然看到了以前做的一个双色球机选的例子,实现如下:
1. 逻辑处理类 Choice:
package com.andy.pra.controller;
import java.util.Scanner;
import com.andy.pra.util.Lottery;
/**
* 双色球逻辑处理
* @author andy
*
* 2017-6-16
*
*/
public class Choice {
public static void main(String[] args) {
System.out.println("------欢迎来到中国福利彩票------");
Lottery lot = new Lottery();
System.out.println("请输入您要几组双色球,需要是大于0的整数");
Scanner scan = new Scanner(System.in);
int n = scan.nextInt();
if (n > 0 && n % 1 == 0) {
System.out.println("开始机选摇号!");
for (int i = 0; i < n; i++) {
System.out.println(" ");
System.out.println("第" + (i + 1) + "组");
boolean flag = true;
int r[] = { 0, 1, 2, 3, 4, 5 };// 定义一个有6个数的数组
while (flag) {
for (int j = 0; j < 6; j++) {// for循环用于输入和存储6个红色球在数组中
r[j] =