gpt4 book ai didi

java - 检查随机数的 boolean 方法

转载 作者:行者123 更新时间:2023-11-30 06:57:59 26 4
gpt4 key购买 nike

我有一个在给定时间间隔内生成随机数的类。

    public class Dice{
//code.....

public int throwDice(){
Random randomGen = new Random();
int min = 1;
int max = sides; //sides gets a value earlier in the class
int randomNum = randomGen.nextInt((max - min) + 1) + min;
return randomNum;
}

然后作业说我将使用一个看起来像这样的 boolean 方法(其中也包含我已经编写的代码):

    private boolean step(){
int res = this.dice.throwDice();
int startpos = this.bridge.getFirst();
if (res == 10){ //this works
return false;
}
else if (res => 7 && res <= 9 ){ //but the error occurs here
//code....
return true;
}

我需要做的是检查throwDice()方法中生成的随机数是否在一定的数字区间内。

问题是我收到一条错误消息,提示我无法将 int 转换为 boolean。有办法解决这个问题吗?还是我必须重新考虑我的整个解决方案?

最佳答案

=> 应该反过来。

else if (res => 7 && res <= 9 ){

应该是

else if (res >= 7 && res <= 9 ){

等式和关系运算符

==      Equal to
!= Not equal to
> Greater than
>= Greater than or equal to <-----
< Less than
<= Less than or equal to

Source Equality and Relational Operator

关于java - 检查随机数的 boolean 方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33113230/

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