Question: *****In Scheme*******, Create a simple function divisible-by? which takes two numbers and returns #t or #f if the first parameter is divisible by the second
*****In Scheme*******, Create a simple function divisible-by? which takes two numbers and returns #t or #f if the first parameter is divisible by the second parameter. Note: if the first parameter and second parameter are the same number, it should consider this a #f case. Please use Scheme, not python!
For example:
(divisible-by? 10 2) #t
(divisible-by? 10 3) #f
(divisible-by? 2 2) #f
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
