Help for this page

Select Code to Download


  1. or download this
    $max_count = 100;
    $counter = 0;
    ...
       $conter++;
       print "COUNT = $count"
    }
    
  2. or download this
    COUNT = 0
    COUNT = 1
    ...
    COUNT = 99
    
  3. or download this
    COUNT = 0
    COUNT = 0
    COUNT = 0
    ...
    
  4. or download this
    my $max_count = 100;
    my $counter = 0;
    ...
       $conter++;
       print "COUNT = $count"
    }