码迷,mamicode.com
首页 > 其他好文 > 详细

随机数不随机

时间:2016-09-14 20:23:51      阅读:103      评论:0      收藏:0      [点我收藏+]

标签:

public class TestRandom {
    public static void main(String[] args){
        Random random = new Random(441287210);
        for(int i=0;i<10;i++)
            System.out.print(random.nextInt(10)+" ");

        System.out.println("");

        Random random2 = new Random(-6732303926L);
        for(int i=0;i<10;i++)
            System.out.print(random2.nextInt(10)+" ");

        System.out.println("");


        System.out.println(randomString(-229985452)+‘ ‘+randomString(-147909649));

    }


    public static String randomString(int seed) {
        Random rand = new Random(seed);
        StringBuilder sb = new StringBuilder();
        for(int i=0;;i++) {
            int n = rand.nextInt(27);
            if (n == 0) break;
            sb.append((char) (‘`‘ + n));
        }
        return sb.toString();
    }

}

输出:

1 1 1 1 1 1 1 1 1 1
0 1 2 3 4 5 6 7 8 9
hello world

随机数不随机

标签:

原文地址:http://www.cnblogs.com/vinozly/p/5873139.html

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