Hi,
I am trying to view the current values of one variable during execution of a code.
But Eclipse says that this particular line is unreachable code. Does anybody know why?Code:public class TestSum {
static double sum( int n ) {
if( n == 1 )
return 1;
else {
return n*n + sum(n - 1)*sum(n-1);
[COLOR="Red"]System.out.println(n);[/COLOR]
}
}
}

