Onsider the following pseudocode function. function Crunch (x R) if x ≥ 100 then return x/100 else return x + Crunch (10 · x) (a) Compute Crunch (4). Crunch (4) = (b) What happens if you try to compute Crunch (-23) ? What does this suggest about an appropriate precondition for this function?
+2
Answers (1)
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “Onsider the following pseudocode function. function Crunch (x R) if x ≥ 100 then return x/100 else return x + Crunch (10 · x) (a) Compute ...” in 📗 Mathematics if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Home » Mathematics » Onsider the following pseudocode function. function Crunch (x R) if x ≥ 100 then return x/100 else return x + Crunch (10 · x) (a) Compute Crunch (4).