Java で 1 から 50 までのランダムな値を取得したいと思います。
の助けを借りてそれをどのように行うことができますかMath.random();
?
返される値をどのように制限しますかMath.random()
?
ベストアンサー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);