Help for this page

Select Code to Download


  1. or download this
    for ($count = 2; $count <=sprintf($number/2); $count++)
    { 
    ...
        push (@factor, $result);
    }    <-------------------------------- Extra Block..
    }
    
  2. or download this
    use strict;
    use warnings;
    ...
    foreach (@factor) {
        print "$_\n";
    }
    
  3. or download this