gpt4 book ai didi

java - 生成并显示 N 个 0 到 1 之间的随机数的函数

转载 作者:行者123 更新时间:2023-12-02 02:44:22 25 4
gpt4 key购买 nike

我必须生成随机数,我有一个正在运行和工作的代码,但它看起来不是随机的,它会生成序列,无论如何是对的吗?或者还有其他方法可以做到这一点

public static void main(String[] args) {

Scanner teclado = new Scanner(System.in);
System.out.println("Ingrese el numero N");
int n = teclado.nextInt();

for (int i = 1; i <= n; i++){

double d = numerosAleatorios(i,n);
System.out.println(d);
}

}

public static double numerosAleatorios(double b, double c){

return b / c;
}

最佳答案

Math.random() 返回大于或等于 0.0 且小于 1.0 的伪随机 double 值。

public static void main(String[] args) {

Scanner teclado = new Scanner(System.in);
System.out.println("Ingrese el numero N");
int n = teclado.nextInt();
for (int i = 1; i <= n; i++){
double d = Math.random();
System.out.println(d);
}
}

Ingrese el numero N

8

0.660560867388863

0.6664125435482811

0.4814731375341803

0.040360135942367203

0.5503428291806611

0.25928232439131915

0.8536945699105207

0.41418876402957383

关于java - 生成并显示 N 个 0 到 1 之间的随机数的函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57156372/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com