Help for this page

Select Code to Download


  1. or download this
      my @minutes = map { $_ / 60 } @seconds;
    
  2. or download this
      my @minutes = ();
      foreach my $sec (@seconds)
       {
        push @minutes, ($sec / 60);
       }