.LT. means less than (<)So you cannot use symbols like < or = for comparisons in Fortran 77.
.LE. less than or equal (<=)
.GT. greater than (>)
.GE. greater than or equal (>=)
.EQ. equal (=)
.NE. not equal (/=)
For example: (x.eq.y) is valid while (x=y) is not valid in Fortran 77.
Logical expressions can be combined by the logical operators .AND. .OR. .NOT. which have the obvious meaning.
Logical variables and assignment
Truth values can be stored in logical variables. The assignment is analogous to the arithmetic assignment.Example:
logical a, bThe order of precedence is important, as the last example shows. The rule is that arithmetic expressions are evaluated first, then relational operators, and finally logical operators. Hence b will be assigned .FALSE. in the example above.
a = .TRUE.
b = a .AND. 3 .LT. 5/2
Logical variables are seldom used in Fortran. But logical expressions are frequently used in conditional statements like the if statement.