码迷,mamicode.com
首页 > Windows程序 > 详细

LotteryDrawing

时间:2016-12-10 00:27:12      阅读:224      评论:0      收藏:0      [点我收藏+]

标签:for   blog   str   log   raw   ide   last   void   index   

import java.util.*;

public class MyTest{
    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            //ps: I guess the author must consider the Poker when he write down these codes ..........
            numbers[r] = numbers[n - 1];
            n --;
        }

        //print the sorted array
        Arrays.sort(result);
        System.out.print("Bet the following combination. It‘s make you rich!");
        for(int r: result)
            System.out.println(r);
    }
}

 

LotteryDrawing

标签:for   blog   str   log   raw   ide   last   void   index   

原文地址:http://www.cnblogs.com/xkxf/p/6152808.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!