Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Define a LISP function SCORE->GRADE which takes a single argument, s, and returns a symbol according to the following scheme: s90 is A 87s <
Define a LISP function SCORE->GRADE which takes a single argument, s, and returns a symbol according to the following scheme: s90 is A 87s < 90 is A- 83 s < 87 B+ 80 s < 83 B 77 s < 80 B 73 s < 77 C+ 70 s < 73 C 60 s < 70 D s < 60 F
If the argument is not a number then return NIL. Examples of results:
(SCORE->GRADE 59.9) => F (SCORE->GRADE 67) => D (SCORE->GRADE '(86.3)) => NIL (SCORE->GRADE 'DOG) => NIL
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started