gpt4 book ai didi

java - 理解 if 条件 - Java

转载 作者:行者123 更新时间:2023-12-01 16:56:35 25 4
gpt4 key购买 nike

使用此示例的 if 条件是什么。

A - if true, B or C must also be true; Pass
if false, B and C do not matter; Fail
B - if true, A must also be true and C can be false or true
if false, A must be true and C must be true; Pass, else Fail
C - if true, A must also be true and B can be false or true
if false, A must be true and B must be true; Pass, else Fail

我不知道如何设置。我认为 if 可能如下所示:

//Not sure if the "or" needs to be double or single bar.
if(A && B | C){
//pass
}else{//fail}

此逻辑的分解代码如下:

if(A){
if(B|C){
//PASS
}else{//fail}
}else{//fail}

最佳答案

根据您使用的语言,主要是 ||双杠。

我认为这会起作用:

if(A && (B || C)) {
pass;
} else {
fail;
}

这意味着如果 A 为真且 B 或 C 为真则通过,否则失败。

关于java - 理解 if 条件 - Java,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31922969/

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