gpt4 book ai didi

java - 用Java生成随机数?

转载 作者:行者123 更新时间:2023-12-01 18:21:59 25 4
gpt4 key购买 nike

我想问如何编写一个程序,需要使用循环生成从200到500的100个不同的数字,然后将它们全部相乘。结果应该打印在控制台上。我不知道如何将所有数字相乘。

这是我到目前为止所做的:

import java.util.Random;

public class Main {

/**
* @param args the command line arguments
*/
public static void main(String[] args) {
for(int i=0;i<100;i++)
System.out.println("Random number["+(i+1)+"]:"+(int)(Math.random()*500));
}
}

最佳答案

我相信您正在寻找类似的东西,

Random rand = new Random();
BigInteger val = BigInteger.ONE;
for (int i = 0; i < 100; i++) {
int v = rand.nextInt(301) + 200; // 0-300 + 200, is the range 200-500.
val = val.multiply(BigInteger.valueOf(v));
System.out.printf("Random number %d: %d%n", i + 1, v);
}
System.out.println(val);

关于java - 用Java生成随机数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27426253/

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