On Wednesday, July 17, 2002, at 09:15 , Jilani, Mohammad K wrote:

> How can I generate a whole number betwee 10 - 99?
>

perldoc -f rand

and then tweek it

since rand runs from 0 you might try say

        my $rand_num = rand(90) + 10;



ciao
drieux

---


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to