62,628
社区成员
发帖
与我相关
我的任务
分享package com.core.java;
import java.util.*;
/**
4 * This program demonstrates array manipulation.
5 * @version 1.20 2004-02-10
6 * @author Cay Horstmann
7 */
public class LotteryDrawing
{
public static void main(String[] args)
{
Scanner in = new Scanner(System.in);
System.out.print("How many numbers do you need to draw? ");
int k = in.nextInt();
System.out.print("What is the highest number you can draw? ");
int n = in.nextInt();
// fill an array with numbers 1 2 3 . . . n
int[] numbers = new int[n];
for (int i = 0; i < numbers.length; i++)
numbers[i] = i + 1;
// draw k numbers and put them into a second array
int[] result = new int[k];
for (int i = 0; i < result.length; i++)
{
// make a random index between 0 and n - 1
int r = (int) (Math.random() * n);
// pick the element at the random location
result[i] = numbers[r];
// move the last element into the random location
numbers[r] = numbers[n - 1];
n--;
}
// print the sorted array
Arrays.sort(result);
System.out.println("Bet the following combination. It'll make yourich!");
for (int r : result)
System.out.println(r);
}
}
/**
4 * This program demonstrates array manipulation.
5 * @version 1.20 2004-02-10
6 * @author Cay Horstmann
7 */
public class LotteryDrawing
{
public static void main(String[] args)
{
//Scanner in = new Scanner(System.in);
// System.out.print("How many numbers do you need to draw? ");
//int k = in.nextInt();
int k=5;
// System.out.print("What is the highest number you can draw? ");
// int n = in.nextInt();
int n=20;
// fill an array with numbers 1 2 3 . . . n
int[] numbers = new int[n];
for (int i = 0; i < numbers.length; i++)
numbers[i] = i + 1;
System.out.println(Arrays.toString(numbers));
// draw k numbers and put them into a second array
int[] result = new int[k];
for (int i = 0; i < result.length; i++)
{
// make a random index between 0 and n - 1
int r = (int) (Math.random() * n);
System.out.println("r:"+r);
// pick the element at the random location
result[i] = numbers[r];
System.out.println("result["+i+"]="+"numbers["+r+"]:"+numbers[r]);
// move the last element into the random location
numbers[r] = numbers[n - 1];
n--;
System.out.println(Arrays.toString(numbers));
}
// print the sorted array
Arrays.sort(result);
// System.out.println("Bet the following combination. It'll make yourich!");
for (int r : result)
System.out.println(r);
}
}