vote up 0 vote down star

I am working on an If statement and I want to satisfy two conditions to ignore the loop. This seemed easy at first, but now... I don't know. this is my dilemma...

if((radButton1.checked == false)&&(radButton2.checked == false))
{
    txtTitle.Text = "go to work";
}

The dilemma is "go to work" is not executed if radButton1 is false and radButton2 is true. Shouldn't it require both conditions to be false in order to skip the statement?

flag
Sounds like what you want is ||, not &&. && does what it says on the label, "and". a && b is true if a AND b are both true. – jalf Nov 25 '08 at 18:16

8 Answers

vote up 17 vote down check

No, it requires them to both be false to execute the statement.

link|flag
vote up 12 vote down

Nope, it requires both conditions to be false to execute the statement. Read again:

if ((radButton1.checked == false) && (radButton2.checked == false)) {
    txtTitle.Text = "Go to work";
}

In English: "If radButton1.checked is false AND radButton2.checked is false, then set the txtTitle.Text to 'Go to work'".

If you want to skip the statement when both conditions are false then negate your logic, like this:

if ((radButton1.checked == true) || (radButton2.checked == true)) {
    txtTitle.Text = "Go to work";
}

This, translated to English would read: "If radButton1.checked is true OR radButton2.checked is true, then set the text to 'Go to work'". This means that if any condition is true, it will execute the statement, or, if both are false, to skip it.

link|flag
I'm sorry about that. I want it to excecute the command if they are both false, but it seems to jump if one condition is false. – Lulu Ket Nov 25 '08 at 17:00
You need to place a debugger and see what's going on... you might think one is true, but may not be the case – Vinko Vrsalovic Nov 25 '08 at 17:05
vote up 0 vote down

You should use || (or) for requiring both statements to be false to skip the 'loop'.

link|flag
If you just replace the && for an || it won't mean what you say, it will be executed with any false condition. – Vinko Vrsalovic Nov 25 '08 at 16:57
In an or (false || false) is the only combination that returns false. Thus both statements must be false to evaluate the or to false and 'skip the loop' – jjnguy Nov 25 '08 at 17:20
Yes, but for the statements to be false, the variables have to be true, because the statements are of the form (radButton1.checked == false). Confusing and unnecessary, I know. – Vinko Vrsalovic Nov 25 '08 at 19:26
I c what you are saying. When I say 'statement' I mean the whole (cond == false) – jjnguy Nov 26 '08 at 1:19
vote up 2 vote down

In your example it will ONLY execute the txtTitle.Text ="go to work" code if BOTH buttons are false. So one being true and one being false it will skip the statement.

link|flag
vote up 0 vote down

No. It requires one of those statements to be false to skip. Look at your if:

if (condition1 && condition2) {
    doSomething();
}

So if condition1 OR condition2 is not true then it won't execute.

link|flag
vote up 8 vote down

Say I have two variables named A and B

If A and B have these values

A     true    true    false   false
B     true    false   true    false

then these operations return

AND   true    false   false   false
OR    true    true    true    false
XOR   false   true    true    false
NAND  false   true    true    true
NOR   false   false   false   true
XNOR  true    false   false   true

Note that the bottom 3 in the second table are the logical opposites (i.e. they've had NOT applied) of the top 3 in the same table.

link|flag
vote up 0 vote down

I got it to work. I see that they both need to be false to execute the statement, for that statement, the way to satisfy both conditions is by using

if(!((radButton1.checked == true)&&(radButton2.checked == true)))
{
    ...
}
link|flag
Which is logically equivalent to: if(radButton1.checked == false || (radButton2.checked == false) { ... } Moral of the story, it's important to realize the difference between OR (||) and AND (&&). – Andrew Nov 25 '08 at 17:32
Lulu, gbarry and Vinko have tried their best to explain what is what? After that also you could not decide what you want. Your modified code and first code snippet is doing exactly the same thing. I think you need to go and get your basics clear. – Pradeep Nov 25 '08 at 17:34
vote up 2 vote down

comparing to true (or false) is entirely unnecessary:

if(!((radButton1.checked == true)&&(radButton2.checked == true))) { ... }

becomes

if( !(radButton1.checked && radButton2.checked) ) { ... }

or equally

if( !radButton1.checked || !radButton2.checked ) { ... }
link|flag
thats what I was thinking. And it looks a lot cleaner – Miles Nov 25 '08 at 17:42

Your Answer

Get an OpenID
or

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