I also have a problem. I found an example of static recursion with the passing of parameters but I as wondering if it was the right set up. I want to write a static recursive method for summations then run it with a program that can show the values of the parameters on each call and then the returned value on each call
Code:public class A
{
public static int staticMethod(int param){
int a=10;
int b=b+a;
int c=(param+b)/param;
return c;
}
}

