31.12.2013, 01:50
Quote:
Operator Meaning Usage
Код:
== Left is equal to Right if (Left == Right) != Left is not equal to Right if (Left != Right) > Left is greater than Right if (Left > Right) >= Left is greater than or equal to Right if (Left >= Right) < Left is less than Right if (Left < Right) <= Left is less than or equal to Right if (Left <= Right) |