The first solution is to use the java.util.Random
class:
(第一种解决方案是使用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;
Another solution is using Math.random()
:
(另一个解决方案是使用Math.random()
:)
double random = Math.random() * 49 + 1;
or
(要么)
int random = (int)(Math.random() * 50 + 1);
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…