Question: Exercise 3-(3 Marks) Recursion Consider the following recursive method: public static int mystery(int z, int n){ if (n==z) return z; else if (n>z) return mystery
Exercise 3-(3 Marks) Recursion Consider the following recursive method: public static int mystery(int z, int n){ if (n==z) return z; else if (n>z) return mystery (z,nz); else return mystery (zn,n); Answer the followign questions: 1. Identify the base case. 2. Identify the general case(s) 3. What is the output of the following statement? Show the recursive calls mystery (8,20)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
