我使用 Java 中的种子生成随机数。知道最终输出是235,种子数是532,我如何在java中得到intBound数?例如
int randomNumber
int seed=532;
int intBound=800;
Random rand = Random(seed);
randomNumber=rand.nextInt(intBound);
System.out.println("The generated Random number using the above seed and int bound is:- "+randomNumber);
//Results is: The generated Random number using the above seed and int bound is: 235
该问题的简化数学版本是:仅知道数学公式的两个值,如何产生第三个值?例如 1+2=3 这也意味着如果我们只知道 2 个值和使用的公式,我们可以很容易地得到第三个值,知道用于获得结果的公式。
不负相思意
动漫人物
相关分类