Question: #Sample_LAB1.pl #First Last #9/13/2020 #Sample program to use for writing Lab1 #Pseudocode (tells what your program does step by step, #prompt user for first name
\#Sample_LAB1.pl \#First Last \#9/13/2020 \#Sample program to use for writing Lab1 \#Pseudocode (tells what your program does step by step, \#prompt user for first name \#prompt user for last name \#prompt for zip code \#print first and last name on separate lines \#print zip code on separate lines print "Please enter your first name: ln " ; \$first = STDIN ; chomp \$first; print "Please enter your last name: In" ; \$last = STDIN ; chomp \$last; print "What is your zip code: In" ; \$zip = STDIN ; chomp \$zip ; print "Hello lnsfirst \$last "; print "Your zip code is: ln$zip "; exit
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
