The C++Course provides a general introduction to programming in C++. It is based on A.B. Downey's book, How to Think Like a Computer Scientist. Click here for details. |
Home Fruitful functions Logical Operators | ||
See also: Boolean Variables | ||
Logical Operators
evenFlag || n%3 == 0 is true if either of the conditions is true, that is, if evenFlag is true OR the number is divisible by 3. Finally, the NOT operator has the effect of negating or inverting a bool expression, so !evenFlag is true if evenFlag is false; that is, if the number is odd. Logical operators often provide a way to simplify nested conditional statements. For example, how would you write the following code using a single conditional? if (x > 0) {if (x < 10) { cout << "x is a positive single digit." << endl; } }
|
||
Home Fruitful functions Logical Operators |