Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
        print "[$first]";
        push @array, $first / 2 if (!($first % 2));
    }
    
  2. or download this
    [1][2][3][4][1][2][1]
    
  3. or download this
    use strict;
    use warnings;
    ...
        print "[$element]";
        push @array, $element / 2 if (!($element % 2));
    }