题目:
// 实现双色球的彩票功能。规则:从36个红球中随机选择不重复的6个数,
//从15个篮球中随机选择1个组成一注彩票。可以选择买多注。
代码:
public static void main(String[] args) {
//创建Random类
Random r = new Random();
Scanner sc = new Scanner(System.in);
System.out.println("请输入你要购买多少注彩票:");
int num = sc.nextInt();
//定义初始值
int j = 1;
while (j <= num) {
System.out.println("\n"+"这是你的第" + j + "注彩票码:");
for (int i = 0; i < 7; i++) {
//随机数1-36
int red_ball = r.nextInt(36) + 1;
//随机数1-15
int basket_ball = r.nextInt(15) + 1;
System.out.format("%02d ", red_ball);
if (i == 6) {
System.out.format("%02d ", basket_ball);
}
}
j++;
}
}
结果截图: