Skip to content
Related Articles
Open in App
Not now

Related Articles

Comparison Operators in LISP

Improve Article
Save Article
  • Last Updated : 07 Sep, 2021
Improve Article
Save Article

In this article, we will discuss the comparison operators in LISP. These operators are used to compare numbers by taking two or more operands.

Note: This will work only on numbers,

Different comparison operators are:

OperatorSyntaxNameDescription
== operand1 operand2equal toThis operator checks if the values of the operands are all equal or not, if yes, will return T(True) otherwise NIL
/=/= operand1 operand2not equal toThis operator checks if the values of the operands are not equal, if yes, will return NIL otherwise T (True)
>> operand1 operand2greater thanThis operator checks if the values of the operand 1 are greater than operand 2, if yes then it returns True, otherwise NIL
<<operand1 operand2less thanThis operator checks if the values of the operand 1 are less than operand 2, if yes then it returns True, otherwise NIL
>=>= operand1 operand2greater than or equal toThis operator checks if the values of the operand 1 are greater than or equal to  operand 2, if yes then it returns True, otherwise NIL
<=<= operand1 operand2less than or equal toThis operator checks if the values of the operand 1 are less than or equal to  operand 2, if yes then it returns True, otherwise NIL
maxmax operand1 operand2maximum numberThis operator returns the maximum value.
minmin operand1 operand2minimum numberThis operator returns the minimum value.

Example: LISP Program demo on comparison operators.

Lisp




;set value 1 to 100
; set value 2 to 200
(setq val1 100)
(setq val2 200)
  
;check val1 is equal to val2 or not
(print (= val1 val2))
  
;check val1 is not equal to val2 or not
(print (/= val1 val2))
  
;check val1 is greater than val2 or not
(print (> val1 val2))
  
;check val1 is less than val2 or not
(print (< val1 val2))
  
;check val1 is greater than or equal to val2 or not
(print (>= val1 val2))
  
;check val1 is less than or equal to val2 or not
(print (<= val1 val2))
  
;get maximum number among val1 and val2
(print (max val1 val2))
  
;get minimum number among val1 and val2
(print (min val1 val2))

Output:

NIL  
T  
NIL  
T  
NIL  
T  
200  
100 

Example 2:

Lisp




;set value 1 to 20
; set value 2 to 70
(setq val1 20)
(setq val2 70)
  
;check val1 is equal to val2 or not
(print (= val1 val2))
  
;check val1 is not equal to val2 or not
(print (/= val1 val2))
  
;check val1 is greater than val2 or not
(print (> val1 val2))
  
;check val1 is less than val2 or not
(print (< val1 val2))
  
;check val1 is greater than or equal to val2 or not
(print (>= val1 val2))
  
;check val1 is less than or equal to val2 or not
(print (<= val1 val2))
  
;get maximum number among val1 and val2
(print (max val1 val2))
  
;get minimum number among val1 and val2
(print (min val1 val2))

Output:

NIL  
T  
NIL  
T  
NIL  
T  
70  
20 

Example 3: LISP program operands with equal numbers.

Lisp




;set value 1 to 50
; set value 2 to 50
(setq val1 50)
(setq val2 50)
  
;check val1 is equal to val2 or not
(print (= val1 val2))
  
;check val1 is not equal to val2 or not
(print (/= val1 val2))
  
;check val1 is greater than val2 or not
(print (> val1 val2))
  
;check val1 is less than val2 or not
(print (< val1 val2))
  
;check val1 is greater than or equal to val2 or not
(print (>= val1 val2))
  
;check val1 is less than or equal to val2 or not
(print (<= val1 val2))
  
;get maximum number among val1 and val2
(print (max val1 val2))
  
;get minimum number among val1 and val2
(print (min val1 val2))

Output:

T  
NIL  
NIL  
NIL  
T  
T  
50  
50 

My Personal Notes arrow_drop_up
Related Articles

Start Your Coding Journey Now!