- or download this
$j=0;
...
print "\$i = $i and \$j = $j";
$j++
}
- or download this
for( $i=0,$j=0; $i<20,$j<20 ; $i++,$j++){
print "\$i = $i and \$j = $j";
}
- or download this
for( $i=0,$j=0; $i<20 or $j<20 ; $i++,$j++){
print "\$i = $i and \$j = $j";
}
- or download this
for( $i=0,$j=0; $i<20 and $j<20 ; $i++,$j++){
print "\$i = $i and \$j = $j";
}