1/18/00
COM1100 Winter2000 Yuhong Yin Northeastern University
21
Relational Operators
nOperand  Relational_Operator Operand
nPrice < 10.5
nOperator Meaning Example
n < Less Than age < 20
n > Greater than height > 6.2
n <= Less than or equal to num1 <= num2
n >= Greater than or equal to temp >= 98.5
n == Equal to grade == 100
n != Not Equal to character != ‘a’
n