Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re^2: Square the array values.

by kiruthika.bkite (Scribe)
on Mar 18, 2010 at 09:10 UTC ( [id://829353]=note: print w/replies, xml ) Need Help??


in reply to Re: Square the array values.
in thread Square the array values.

Is this you are expecting.
use strict; use warnings; use Data::Dumper; my @array=(1,2,3); print Dumper \@array; my $len=$#array; while($len>=0) { $array[$len]=$array[$len]*$array[$len]; $len--; } print Dumper \@array;


Or use the following way.
my @array=(1,2,3); foreach (@array) { $_=$_*$_; }

Replies are listed 'Best First'.
Re^3: Square the array values.
by chromatic (Archbishop) on Mar 18, 2010 at 15:32 UTC

    The latter is much better, though you could multiply and assign in place with =*:

    for (@array) { $_ *= $_; }

    ... or even use postfix iteration:

    $_ *= $_ for @array;

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (4)
As of 2024-04-24 20:08 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found