彩票双色球代码Java
时间: 2024-05-04 20:21:52 浏览: 177
以下是一个简单的彩票双色球代码Java实现:
```java
import java.util.*;
public class DoubleColorBall {
public static void main(String[] args) {
// 生成红球
List<Integer> redBalls = new ArrayList<>();
for (int i = 1; i <= 33; i++) {
redBalls.add(i);
}
Collections.shuffle(redBalls);
List<Integer> selectedRedBalls = redBalls.subList(0, 6);
Collections.sort(selectedRedBalls);
// 生成蓝球
Random random = new Random();
int blueBall = random.nextInt(16) + 1;
// 输出结果
System.out.println("本期双色球号码为:");
System.out.print("红球:");
for (int i = 0; i < 6; i++) {
System.out.print(selectedRedBalls.get(i) + " ");
}
System.out.println("蓝球:" + blueBall);
}
}
```
这个程序使用了Java中的`List`和`Random`类,通过生成红球和蓝球来模拟双色球的开奖过程,最后输出开奖结果。
阅读全文