Greater than or equal to: >=

Greater than or equal to operator is a logical operator that is used to compare two numbers.

>=

Description

par1 >= par2
Used keywords: >=

Input


Output

Note: It works over all types of numbers.
Compatible programing languages:
Basic | Visual Basic .NET | FreeBASIC | C | C++ | Visual C++ .NET | C# | Java | JavaScript | Object Pascal | Pascal | Free Pascal | PHP

Examples

Example

Greater than or equal to the possible of use:
a = 4 >= 2;         // a = true
if ( x >= 12 )
   while ( y >= 0 )  
      --y;

Example

Even one example in what situations we can use the operation greater than or equal to:
x >= y / 5
2 >= f(0xAF)
(j + 8) >= 3

Example

Other pieces of example codes:
0xff >= y

You can find it in the following collections: relational operators
Languages: en hu cz sk