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"; }
In reply to Printing the elements of array by viktor
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |