Thats just what i need....
I have another problem now...
The code is similar
for(i=1;i<=number;i++)
{
for(j=i+1;j<=number;j++);
{
e = j + c^2
}
}
What i need to do is get the value for e, then on the next loop add the new e value to the old e value to sum up?
Any ideas?
Code is an example, so might be a little not to the point.