gpt4 book ai didi

Java 从随机数循环中排除 0 - 我的解决方案可能会出现哪些问题?

转载 作者:行者123 更新时间:2023-11-30 07:15:05 26 4
gpt4 key购买 nike

这样做是否存在我没​​有注意到的分发问题或其他问题?

int exercise = number.nextInt(4);
int repetition = number.nextInt(30);

if(exercise == 0) {
exercise = exercise + exercise + 1;

最佳答案

不需要 if 子句。如果您想确保随机值的“范围”不以 0 开头...那么只需执行以下操作:

int exercise = number.nextInt(4) + 1

例如,确保练习在 [1, 4] 中。

关于Java 从随机数循环中排除 0 - 我的解决方案可能会出现哪些问题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38548782/

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