I have to find the output, base case, recursive case, and depth of recursion of this method. I can't figure out how to find the output. This is the given method:
public int m5(int n){ //use n = 6 for initial n
if(n>=3){
n += m5(n-3);
n += m5(n/2);
}
return n;
}