There are 2 or 3 errors :
- To increment, you need
++
and not++1
- The
;
betweenfor
statement and{
can cause syntax errors - You need to close your curly brackets at the end
{}
There are 2 or 3 errors :
++
and not ++1
;
between for
statement and {
can cause syntax errors{}