Quote:
Originally posted by Dragona2002
X.x can you guys help me i stil dont get th ´´i´´ things etc...
defenetly not with much numbers next to it X.x
|
well, okay.
for (i=0; --- it sets i to 0.
i<10; --- checks to see if i is less than 10. if it is...:
i++) ------ adds 1 to i.
with "this.i" flags:
for (this.i=0;
this.i<10;
this.i++)
The correct formats would be:
for (i=0;i<10;i++)
for this.i=0;this.i<10;this.i++)