vote up 1 vote down star

How do you say if (A == 0) OR (B == 0)?

flag

Jesus. The difference in complexity sure is big. – Magnus Skog May 27 at 14:44
Compared to what? Prolog? Turtle? Cheese-strings? Quantum Chromodynamics? – annakata May 27 at 15:18

4 Answers

vote up 10 vote down check
if (A == 0 || B == 0)

or

if ((A == 0) || (B == 0))

Check out Control Structures and Operators on Wikibooks

link|flag
vote up 9 vote down
if (  A == 0  ||  B == 0 ) {
}
link|flag
I wish I could accept multiple answers. – cf_PhillipSenn May 27 at 14:30
I've faced this dilemma before; what I did was give the best answer a checkmark (15pts) and the rest of them that were almost as good +1s. – Jason S May 27 at 14:38
I always give it to the guy with less points =) – Kieveli May 27 at 14:41
vote up 14 vote down

Just to be snarky:

if (A === 0 || B === 0)
link|flag
Now all you have to do is change your name from "Coehoorn" to "Coercion" ;) – Eoin Campbell May 27 at 14:32
1  
Actually, that's a good point. Without the strict check for equality, all kinds of falsy values count as zero. If we're going to be lax, might as well just do if !(A && B) – Nosredna May 27 at 14:45
vote up 6 vote down

depends if you mean exclusive or inclusive OR :)

Inclusive OR:

if(A == 0 || B == 0) 
{ 
}

Exclusive OR:

if(A == 0 && B != 0 || A != 0 && B == 0) 
{ 
}
link|flag
1  
Actually a simpler xor can be achieved by if(!A != !B) but perhaps readability suffers. JS also has a native bitwise xor in ^ where that applies. – annakata May 27 at 14:38
annakata: Why not (A != B). It will give the same truth table as (A==0 XOR B==0). – DanielSwe May 28 at 7:12

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.