random随机数
Posted gwxppg
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了random随机数相关的知识,希望对你有一定的参考价值。
公式:假设你要产生5到10之间的随机数,可以用下面方法:
int Min = 5;
int Max = 10;
int result = Min + (int)(Math.random() * ((Max - Min) + 1));
例如:
int randNum = rand.nextInt(3);
生成5-26之间的随机数,包括26
int randNum = rand.nextInt(22)+5;
以上是关于random随机数的主要内容,如果未能解决你的问题,请参考以下文章