博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
随机数不随机
阅读量:5019 次
发布时间:2019-06-12

本文共 898 字,大约阅读时间需要 2 分钟。

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

转载于:https://www.cnblogs.com/vinozly/p/5873139.html

你可能感兴趣的文章
SQL Server 数据库的鼠标操作
查看>>
SQL SERVER BOOK
查看>>
WebAPI HelpPage支持area
查看>>
Path元素
查看>>
js学习总结----DOM增删改和应用
查看>>
(20)sopel算法
查看>>
学习总结 javascript 闭包
查看>>
实验吧一个小坑注入
查看>>
【 D3.js 高级系列 — 8.0 】 打标
查看>>
Mac必备软件推荐
查看>>
Android Gson深入分析
查看>>
display:flow-root
查看>>
判读字符串是否为空的全局宏-分享
查看>>
22-reverseString-Leetcode
查看>>
Centos 开机自动联网
查看>>
cocos2dx使用lua和protobuf
查看>>
HDOJ 5630 Rikka with Chess
查看>>
netcore2.1 在后台运行一个任务
查看>>
DOCKER 从入门到放弃(五)
查看>>
Python 多线程学习
查看>>