สอบปลายภาคเรียนที่ 1 2558
ม.2 คลิก
สอบปลายภาคเรียนที่ 1 2558
ม.3 คลิก
d แหล่งเรียนรู้ออนไลน์ b
> greater than 5 > 4 is TRUE < less than 4 < 5 is TRUE >= greater than or equal 4 >= 4 is TRUE <= less than or equal 3 <= 4 is TRUE == equal to 5 == 5 is TRUE != not equal to 5 != 4 is TRUE
if ( TRUE ) Execute the next statement
if ( 5 < 10 ) cout<<"Five is now less than ten, that's a big surprise";
if ( TRUE ) { // Execute these statements if TRUE } else { // Execute these statements if FALSE }
if ( <condition> ) { // Execute these statements if <condition> is TRUE } else if ( <another condition> ) { // Execute these statements if <another condition> is TRUE and // <condition> is FALSE }