how to do it?

Oct 17, 2011 at 4:08am
Write the logical opposite of this if-statement, applying DeMorgan's Theorem: if (a == 1 || a == 2) .
Last edited on Oct 17, 2011 at 4:09am
Oct 17, 2011 at 4:11am
if(a !=1 && a!=2)
Topic archived. No new replies allowed.