gpt4 book ai didi

java - 是否可以在 If 语句中使用 2 个数学条件?

转载 作者:行者123 更新时间:2023-11-29 04:20:10 24 4
gpt4 key购买 nike

我正在创建一个二十一点程序。我需要检查 庄家的手牌是否大于玩家的手牌 并且小于 21。

变量

dValue1 is the dealer's first card
dValue2 is the dealer's second card
pValue1 is the player's first card
pValue2 is the player's second card

我试过这样做:

if(dValue1 + dValue2 > pValue1 + pValue2 && < 21)

但是我收到以下错误:类型不匹配:无法从 int 转换为 boolean。运算符 && 对于参数类型 boolean、int 是未定义的。

如果有人可以建议另一种方法来做到这一点,或者如果我只是犯了一个语法错误,我将非常感激。

澄清一下:我想检查庄家牌的点数是否大于闲家牌,但也小于 21。

最佳答案

您必须将条件一分为二。

if ((dValue1 + dValue2) > (pValue1 + pValue2) && (dValue1 + dValue2) < 21)

关于java - 是否可以在 If 语句中使用 2 个数学条件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49866950/

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