LISP program to find the min and max of two numbers
kw.lisp
Output
kodingwindow@kw:~$ clisp kw.lisp ——————————————————————————————————————————— Program to find the min/max of two numbers ——————————————————————————————————————————— Enter the 1st number -50 Enter the 2nd number 10 Minimum of -50 OR 10 = -50 Maximum of -50 OR 10 = 10 ——————————————————————————————————————————— kodingwindow@kw:~$
Advertisement