If you want to write as few lines as possible, you might try:
#!/usr/bin/perl
use strict;
use warnings;
use Date::Calc qw(Delta_DHMS Time_to_Date);
my @secs = qw(1000 10000 100000 1000000 86400 86399 3600 3599 0 31394
+2941 -2941 -86399);
for (@secs) {
printf("%s%02d:%02d:%02d:%02d\n", $_ < 0 ? '-' : '', Delta_DHMS(Time
+_to_Date(0), Time_to_Date(abs($_))));
}
Quick 'n' easy, and negative "time remaining" will still print out nicely.
Edit: Or, as a subroutine:
sub time_remaining {
my $input_seconds = shift;
return sprintf(("%s%02d:%02d:%02d:%02d", $input_seconds < 0 ? '-' :
+'', Delta_DHMS(Time_to_Date(0), Time_to_Date(abs($input_seconds))));
}
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.