Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re: How to iterate by fives?

by boo_radley (Parson)
on Feb 15, 2003 at 22:53 UTC ( [id://235620]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    for (1..100) {
        print "$_ ";
        print "\n" if ($_ % 5 ==0); # add a break (or other string) every 
    +5 elements 
    }
    
  2. or download this
    @foo = map {$_*5} (1..10); # generate a list by fives.
    print join " ", @foo,"\n\n"; # see the fives.
    ...
        print "\n  </tr>\n";
    }
    print "</table>\n\n";
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://235620]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (5)
As of 2024-04-18 01:52 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found