Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    #print join ("$start" , @numbers),"\n";
    
    print join ' ', map { 0, $_ } @numbers;
    
  2. or download this
    Not enough arguments for map at 910662.pl line 9, near "} @numbers"
    syntax error at 910662.pl line 9, near "} @numbers"
    Execution of 910662.pl aborted due to compilation errors.
    
  3. or download this
    print join ' ', map { ' 0 ' . $_ } @numbers;
  4. or download this
     0 4  0 7  0 11  0 14