小编典典

在Java中获取随机数

all

我想在 Java 中获得 1 到 50 之间的随机值。

我该如何在 的帮助下做到这一点Math.random();

如何绑定Math.random()返回的值?


阅读 127

收藏
2022-03-10

共1个答案

小编典典

第一个解决方案是使用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);
2022-03-10