1

我正在创建一个二十一点程序。我需要检查if the dealer's hand is greater than the players hand and also less then 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。

4

1 回答 1

3

您必须将条件分成两部分。

if ((dValue1 + dValue2) > (pValue1 + pValue2) && (dValue1 + dValue2) < 21)
于 2018-04-16T22:09:01.383 回答