Quote:
|
Originally Posted by AlphaOmega870
for ( n = 1; n =< 150; n++; )
this line of code?
I continuosly get a syntax error with this line and can find no problem with it. Thank you in advance.
|
A for loop only takes 4 parameters, you've got an extra ';' at the end. It should be
Code:
for (n = 1; n =< 150; n++)