viktor has asked for the wisdom of the Perl Monks concerning the following question:
I have an array(5,4,10). the total of these array would be 19 . I want to print in range like (1-5,6-9,10-19) I tried writing a script but i have just started programming so I don't know how to do it still I have written a code. Can some one help me out
#!/usr/bin/perl -w use strict; my @array=qw (5 4 10); for(my $i=0;$i<$#array;$i++){ my $first=$array[$i]; my $b=$i+1; my $second=$array[$b]; my $sum=$first+$second; print $first."-".$sum."\n"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Printing the elements of array
by toolic (Bishop) on Jan 16, 2012 at 17:39 UTC | |
by viktor (Acolyte) on Jan 16, 2012 at 17:44 UTC | |
|
Re: Printing the elements of array
by Not_a_Number (Prior) on Jan 16, 2012 at 17:47 UTC | |
|
Re: Printing the elements of array
by ansh batra (Friar) on Jan 16, 2012 at 17:49 UTC | |
|
Re: Printing the elements of array
by JavaFan (Canon) on Jan 16, 2012 at 21:15 UTC |