View Single Post
  #13  
Old 06-29-2002, 03:38 PM
Torankusu Torankusu is offline
Elite Member
Torankusu's Avatar
Join Date: Jun 2001
Posts: 10,065
Torankusu is a jewel in the roughTorankusu is a jewel in the rough
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++)
__________________
Quote:
Originally posted by Spark910
Think befreo you type.
Reply With Quote