[Solved] Using Scheme Create Second Function Called Readandmult Uses Recursive Multiplication Takes Q37295117
USING SCHEME….
Create a second function called ReadAndMult that uses yourRecursive multiplication but takes two reads of input from theuser. Make sure you confirm that the two values are numbers!
(ReadAndMult)
> 6
> 2
> 12
Hint: Remember, you don’t have to print the result, just returnit.
Test script:
(display “Testing ReadAndMult”)
(display “Input 6 5 –>”)
(ReadAndMult)
(display “30 <– correct answer”)
(newline)
Expert Answer
Answer to USING SCHEME…. Create a second function called ReadAndMult that uses your Recursive multiplication but takes two reads… . . .
OR

