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
}