4.14. Logical operatorsΒΆ

There are three logical operators in C++: AND, OR, and NOT, which are normally denoted by the symbols &&, || and !. The semantics (meaning) of these operators is similar to their meaning in English. For example x > 0 && x < 10 is true only if x is greater than zero AND less than 10.

even || n%3 == 0 is true if either of the conditions is true, that is, if the bool variable even is true OR the number is divisible by 3.

Finally, the NOT operator has the effect of negating or inverting a bool expression, so !even is true if even is false; that is, if the number is odd.

Logical operators often provide a way to simplify nested conditional statements.


More to Explore

You have attempted of activities on this page