gpt4 book ai didi

java - % Chance,这段代码高效且正确吗?

转载 作者:太空宇宙 更新时间:2023-11-04 11:37:02 26 4
gpt4 key购买 nike

public class Spell {

// chance = (0, 100>
private int chance;

public void execute() {
if (chance < 100) {
/*
chance:80
random:40 ... if(true) ... succeed

chance:80
random:80 ... if (true) ... failed

chance:80
random:81 ... if (true) ... failed

chance:79
random:80 ... if (false) ... succeed

chance:66
random:<0,65> (66 numbers) ... if (false) ... succeed
random:<66,99> (34 numbers) ... if (true) ... failed


*/
if (chance <= (int) (Math.random() * 100)) {
System.err.println("failed");
return;
}

}
System.out.println("succeed");

}

//Test
public static void main(String[] args) {
Spell spell = new Spell();
spell.chance = 80;
spell.execute();
}
}

这是计算机会的正确方法吗?我需要某些事情偶然发生%次。我想知道我在这里是否犯了一些错误或者它是否有效。

假设我们的机会 = 80,我需要它在 80% 的时间里成功,在 20% 的时间里失败。代码中有相关内容,稍后我将在其中添加一个函数。

最佳答案

从数学的角度来看,你的想法是正确的。您固定一个段 [0, 100) 并获得均匀分布的随机数。生成的数字落入段 [0,80) 的概率为 80%。

考虑到问题评论中的建议,代码可能如下所示:

import java.util.Random;

public class Spell {
private int chance;
private Random rnd = new Random(System.currentTimeMillis());

public Spell(int chance) {
//TODO: Check that chance is inside [0, 100]
this.chance = chance;
}

public void execute() {
if (rnd.nextInt(100) <= chance)
System.out.println("succeed");
else
System.err.println("failed");
}
}

最后,您将看到打印有 chance 概率的“succeed”。

关于java - % Chance,这段代码高效且正确吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43173993/

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