in reply to For Loops and Reversing output
Also, is there any particular reason you don't want to use the reverse keyword?
You're right that you need to do something to the "for" line Let's examine that statement a bit more:
Take a few moments to think and it should be clear how to reverse this loop.for ( my $i=0; # start with this value of $i $i <=$#sorted; # loop while $i <= $#sorted(the last index in @s +orted) $i++ # increase $i by one after each iteration ) { print "$sorted[$i]\n"; # print element number $i }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: For Loops and Reversing output
by Fletch (Bishop) on Dec 12, 2006 at 03:12 UTC |