NodeReaper has asked for the wisdom of the Perl Monks concerning the following question:

Replies are listed 'Best First'.
Re: A Newcomer can't get the user input!
by dimmesdale (Friar) on Jul 06, 2002 at 21:34 UTC
    You have to do your own asking. . .

    For example:

    print "Input radius:\t"; $radius = <STDIN>; $cirum = $radius * 2 * 3.14159; print "The circumfrence of the circle with the radius of $radius equal +s $circum\n";

    By the way, your example, I'm reasonably sure, would work if you just typed in the input. (The program is expecting it, but won't tell you unless it's told to tell you.)