UNKNOWN =************************************** = Name: Addition of Five Numbers = Description:I'm still learning how to program in Perl this is a simple program to add the sum of five numbers. If you like my work please send me an email at jakerpomperada@yahoo.com. My facebook and yahoo messenger address is jakerpomperada@yahoo.com. My skype address is jakerpomperada. I am also accepting customized programming work at a very affordable fee just send me an email on above address. People here in the Philippines who wish to contact me through my mobile phone numbers 09993969756 and 09154628025. My telephone number at home is +63 (034) 4335081. Thank you very much and Happy programming. Regards, Mr. Jake Rodriguez Pomperada,MAED-IT Freelance Programmer / Web Developer / IT Instructor = By: Jake Rodriguez Pomperada = = = Inputs:None = = Returns:None = =Assumes:None = =Side Effects:None =This code is copyrighted and has limited warranties. =Please see http://www.Planet-Source-Code.com/xq/ASP/txtCodeId.813/lngWId.6/qx/vb/scripts/ShowCode.htm =for details. =************************************** #!/usr/bin/perl print "\t ADDITION OF FIVE NUMBERS"; print "\n\n"; print "Enter 1st Value : "; chomp ($a = <>); print "Enter 2nd Value : "; chomp ($b = <>); print "Enter 3rd Value : "; chomp ($c = <>); print "Enter 4th Value : "; chomp ($d = <>); print "Enter 5th Value : "; chomp ($e = <>); $sum = ($a+$b+$c+$d+$e); print "\n\n"; print "The total sum is $sum."; print "\n\n";