Showing posts with label Multiplication Table Generator Using Hash in Perl. Show all posts
Showing posts with label Multiplication Table Generator Using Hash in Perl. Show all posts

Tuesday, April 14, 2020

Multiplication Table Generator Using Hash in Perl

Write a program using hash that will ask the user to give a key value based on
the follow key values 5=>5,6=>6,7=>7,8=>8,9=>9 and 10=>10. The program will
generate multiplication table based on the user key values given. I am usin strawberry Perl as my Perl interpreter in writing this program.

I am currently accepting programming work inventory system, enrollment system, accounting system, payroll system, information system, website design and development using WordPress, IT projects, school and application development, programming projects, thesis, and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in 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 the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.
My mobile number here in the Philippines is 09173084360. My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.


Here in Bacolod City, Negros Occidental I also accepting computer repair, web development using WordPress, Computer Networking and Arduino Project development at a very affordable price.
My personal website is http://www.jakerpomperada.com

My programming website is http://www.jakerpomperada.blogspot.com

I am also a book author you can purchase my books on computer programming and information technology in the following links below.

https://www.mindshaperspublishing.com/
https://www.unlimitedbooksph.com/



Sample Program Output


Program Listing

#  multiplication_table_hash.pl
# Author   : Jake R. Pomperada,MAED-IT,MIT
# Date     : April 14, 2020  Tuesday  2:35 PM
# Location : Bacolod City, Negros Occidental
# Email    : jakerpomperada@gmail.com
# Websites : http://www.jakerpomperada.com
#            http://www.jakerpomperada.blogspot.com

my %val_num = (5 => 5,
               6 => 6,
               7 => 7,
               8 => 8,
               9 => 9,
               10 => 10,
           );

printf("\n");
printf("\tMultiplication Table Generator Using Hash in Perl\n\n");
printf("\n");
printf("\tEnter a Key Number : ");
chomp( $val = <>);
printf("\n");
for $-(1..$val_num {$val}){
  printf'%5d',$_*$-for 1..$val_num{$val};
  print$/
}
printf("\n");
print " "// "The Key '$a' doesn't exist.\n";
printf("\n");
printf("\t\tEnd of Program");
printf("\n\n");