16.11.2013, 17:25
> - is bigger than
< - is lower then
=< - is lower or equal to
=> - is bigger or equal to
Example:
< - is lower then
=< - is lower or equal to
=> - is bigger or equal to
Example:
Код:
new a; a = 5; if(a > 5) // it will return 0 if(a => 5) // it will return 1