Help for this page

Select Code to Download


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