Thread: for loops
View Single Post
  #2  
Old 10-22-2001, 03:24 AM
KJS KJS is offline
The one, The only -
KJS's Avatar
Join Date: Apr 2001
Location: USA, Minnesota
Posts: 1,012
KJS is on a distinguished road
Send a message via AIM to KJS
Re: for loops

Quote:
Originally posted by btedji
can you make a for loop that will accept more than one command during each loop?
yes do it like this

for(this.i=0;this.i<=10;this.i++{
//coding
}

or something like this

this.i=0;
while(this.i<=10){
this.i++;
//coding
}
__________________
Thanks,
-KJL
Reply With Quote