Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re: Re: while loops

by rob_au (Abbot)
on Jan 11, 2002 at 18:41 UTC ( [id://138011]=note: print w/replies, xml ) Need Help??


in reply to Re: while loops
in thread while loops

No, not at all - Your code will only pass through a single iteration of the loop as on the first pass, the value of $num is added to $num. The result is that $num equals 40 and the while loop is exited. I think you may have been meaning, ignoring formatting syntax errors ...

$num = 20; while ($num < 30) { print "num is $num\n"; ++$num; }

Although, good pick up on the syntax error with the line - $while($num<30){ - Although this had been addressed previously within this thread.

 

perl -e 's&&rob@cowsnet.com.au&&&split/[@.]/&&s&.com.&_&&&print'

Replies are listed 'Best First'.
Re: Re: Re: while loops
by Glyndwr (Initiate) on Jan 11, 2002 at 19:11 UTC
    yes , thanks

    in this case would $num++ also work

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (2)
As of 2024-04-19 19:36 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found