Answered by
8 years ago Edited 8 years ago
A number is "between" 60 and 80 if it is greater than 60: 60 <= x
and it is less than 80: x <= 80
.
Thus,
1 | if 60 < = x and x < = 80 then |
You can use not
to negate the whole thing:
1 | if not ( 60 < = x and x < = 80 ) then |
You can use De Morgan's law to get rid of the not
. not (a and b)
is (not a) or (not b)
. The not
of a <=
is >
and the not
of >=
is <
(flipping when the things are true):
1 | if 60 > x or x > 80 then |
"Flipping" the >
to make them be in smallest to largest makes more sense:
1 | if x < 60 or 80 < x then |
That is, x
is not between 60 and 80 if it is less than 60, OR it is greater than 80.