I'm trying to run the below recursive function. Here it is-
public static void Q3(int n) {
if (n <= 0)
return;
StdOut.println(n);
Q3(n-2);
Q3(n-3);
StdOut.println(n);
}
Can someone help me understand the flow of control for this function? I tried but not able to understand how this function is called and how a different value is printed with subsequent recursive calls. Also, I get this error message when I try to use the function in a java program-
Error:(19, 26) java: 'void' type not allowed here
The error is on the line-
StdOut.println(Q3(n));
Here is the code that I use for the function call-
public static void main(String[] args) {
int n = Integer.parseInt(args[0]);
StdOut.println(Q3(n));
}
Can someone tell me what mistake I'm making while calling the function and how should I call instead to avoid any errors?