Standard Relational Operators
The most common numerical relational operators used in programming languages are shown below.
Convention | equal to | not equal to | greater than | less than | greater than or equal to |
less than or equal to |
---|---|---|---|---|---|---|
In print | = | ≠ | > | < | ≥ | ≤ |
Fortran | .EQ. |
.NE. |
.GT. |
.LT. |
.GE. |
.LE. |
ALGOL 68 | = |
≠ |
> |
< |
≥ |
≤ |
/= |
>= |
<= |
||||
eq |
ne |
gt |
lt |
ge |
le |
|
BASIC-like | = |
<> |
> |
< |
>= |
<= |
MUMPS | = |
'= |
> |
< |
'< |
'> |
Pascal-like | = |
<> |
> |
< |
>= |
<= |
C-like | == |
!= |
> |
< |
>= |
<= |
Bourne-like shells | -eq |
-ne |
-gt |
-lt |
-ge |
-le |
Batch file | EQU |
NEQ |
GTR |
LSS |
GEQ |
LEQ |
MATLAB | == |
~= |
> |
< |
>= |
<= |
eq(x,y) |
ne(x,y) |
gt(x,y) |
lt(x,y) |
ge(x,y) |
le(x,y) |
|
Mathematica | == |
!= |
> |
< |
>= |
<= |
Equal |
Unequal |
Greater |
Less |
GreaterEqual |
LessEqual |
Read more about this topic: Relational Operator
Famous quotes containing the word standard:
“[The Declaration of Independence] meant to set up a standard maxim for free society, which should be familiar to all, and revered by all; constantly looked to, constantly labored for, and even though never perfectly attained, constantly approximated, and thereby constantly spreading and deepening its influence, and augmenting the happiness and value of life to all people of all colors everywhere.”
—Abraham Lincoln (18091865)
Related Subjects
Related Words