If you have a for loop like this:
for(j = 0; j<=90; j++){}
It works fine. But when you have a for loop like this:
for(j
Change
for(j = 0; j<=90; j+3)
to
for(j = 0; j<=90; j=j+3)