Tuesday, April 6, 2021

Sum and Product of Two Numbers in PERL

 Machine Problem

Create and design a program that will ask the user to give two numbers and then the program will compute the sum and product of the given numbers and display the results on the screen.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me at the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is jakerpomperada@gmail.com and jakerpomperada@yahoo.com





Program Listing


# sum_product.pl
# Author      :  Jake Rodriguez Pomperada,MAED-IT,MIT
# Date        :  November 5, 2019  Tuesday  9:49 AM
# Location    :  Bacolod City, Negros Occidental
# Email       :  jakerpomperada@gmail.com
# Websites    :  www.jakerpomperada.com  
#                www.jakerpomperada.blogspot.com

print "\n\n";
print "\tSum and Product of Two Numbers in PERL";
print "\n\n";
print "\tEnter First Value  : ";
chomp($a  =<>);
print "\tEnter Second Value  : ";
chomp($b =<>);

# Compute the sum and product
   $sum = ($a+$b);
   $product = ($a*$b);

print "\n\n";
print "\tThe sum of $a and $b is $sum.";
print "\n\n";
printf "\tThe product of $a and $b is $product.";
print "\n\n";
print "\tEnd of Program";


 


No comments:

Post a Comment