I'm having a little bit of confusion on how recursive calls work.
What does the method call recur2(5) display with the following code?:
public static void recur2 (int n) { if(n<=0) { return; } else { recur2(n - 2); System.out.print(n); } }
I would think it would print "31" but that's not right?