2/6/00
COM1100 Winter2000 Yuhong Yin
6
Relationship between true and false
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