随机数

2020-09-27

前端

志不强者智不达。——《墨子·修身》

javascript0到99随机整数:

1
parseInt(Math.random() * 100);

java0到99随机整数

1
new Random().nextInt(100);