码迷,mamicode.com
首页 > 编程语言 > 详细

Java开发中经典的小实例-(随机数)

时间:2016-10-22 20:51:39      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:boolean   小实例   size   输出   static   repeat   i++   length   public   

import java.util.Random;

//输出小于33的7个不相同的随机数
public class probability {

    static Random random = new Random();

    static int[] array = new int[7];

    static int number;

    public static void main(String[] args) {
        // TODO Auto-generated method stub

        for (int i = 0; i < array.length - 1; i++) {
            number = (random.nextInt(33)) + 1;

            if (i != 0) {

                while (isRepeat(i, number)) {

                    number = random.nextInt(33) + 1;
                }

            }

            array[i] = number;

        }
        array[6] = (int) (Math.random() * 16) + 1;

        for (int j : array) {

            System.out.println(j);
        }

    }

    public static boolean isRepeat(int size, int number) {

        boolean reqeat = false;

        for (int i = 0; i < size; i++) {

            if (array[i] == number) {

                reqeat = true;
                break;
            }

        }

        return reqeat;

    }

}

Java开发中经典的小实例-(随机数)

标签:boolean   小实例   size   输出   static   repeat   i++   length   public   

原文地址:http://www.cnblogs.com/L-zhihua/p/5988212.html

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