Help for this page

Select Code to Download


  1. or download this
    for (0..$#array){
        if ($_ % 20 == 19){
    ...
            print OUT "$array[$_] ";
        }    
    }
    
  2. or download this
    for (@array){
        if (++$cnt % 20 == 0){
    ...
            print OUT "$_ ";
        }    
    }