用Java获取随机数
我想在Java中获得1到50之间的随机值。
在的帮助下,我该怎么办Math.random()
;?
如何绑定Math.random()
返回的值?
回答:
第一种解决方案是使用java.util.Random
类:
import java.util.Random;Random rand = new Random();
// Obtain a number between [0 - 49].
int n = rand.nextInt(50);
// Add 1 to the result to get a number from the required range
// (i.e., [1 - 50]).
n += 1;
另一种解决方案是使用Math.random()
:
double random = Math.random() * 49 + 1;
要么
int random = (int)(Math.random() * 50 + 1);
以上是 用Java获取随机数 的全部内容, 来源链接: utcz.com/qa/425789.html