i = 1;
while ( i < 10)
{
j = i * i - 1;
k = 2 * j - 1;
}
I would like to know what's wrong with this code?
Is "i" here the loop variable?
I'm also not sure what's the function of "j" and "k" here. Could you also please explain it to me? I know they are variables...but don't get their function here in the code.
Thanks ;-)