Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re: easy as

by Sherlock (Deacon)
on May 11, 2001 at 17:45 UTC ( [id://79708]=note: print w/replies, xml ) Need Help??


in reply to easy as

Well, it looks to me like you're trying to convert a C++ program to Perl. If that's the case, there isn't a CIN and COUT in Perl. Use these instead:

use strict; print "Insert Employee Number: "; # Prompts the user my $empNum = 1; while ($empNum) { $empNum = <>; # Gets input from STDIN print "The employee number you enetered was: $empNum\n"; print "Insert Employee Number: "; # Prompts the user }
If you're still having trouble with things like this, check out Tutorials - there's lots more help there.

Update: The old code prompted for an empty line - use this instead. Sorry about that.

Good luck,
- Sherlock

Skepticism is the source of knowledge as much as knowledge is the source of skepticism.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others meditating upon the Monastery: (1)
As of 2024-04-25 07:32 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found