Less than or equal to: <=
Less than or equal to operator is a logical operator that is used to compare two numbers.<=
Description
par1 <= par2
Input
- par1 - Any number
- par2 - Any number
Output
- Result - Logical value Returns a true, if the first number is less than or equal to the second, otherwise false.
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
Basic | Visual Basic .NET | FreeBASIC | C | C++ | Visual C++ .NET | C# | Java | JavaScript | Object Pascal | Pascal | Free Pascal | PHP
Examples
Example
Less than or equal to the possible of use:a = 2 <= funkc(false);
b = x <= 12;
while ( y <= 32 )
y++;
Example
Even one example in what situations we can use the operation less than or equal to:x <= y * 5
2 <= f(1.9)
(j + 10) <= 128
Example
Other pieces of example codes:y <= x
You can find it in the following collections: relational operators
Less than or equal to in another programming language: