nThe values true and false have the
following relationship:
n!false == true
n!true == false
nIn the
following statement:
n if
(expres1) statement1;
n If expres1 is true, statement1 is always executed; if expres1 is false, statement1 is never executed.
n