Question: (java) Look at the following recursive function: f(a,b) = a if b 0 What is the value of f(5,1)?
(java)
Look at the following recursive function:
f(a,b) = a if b <= 0 f(a,b) = f(a+1, b-1) if b > 0
What is the value of f(5,1)?
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
