Wednesday, October 21, 2020

Loan Interest Solver in PERL

 In this tutorial, I will show you how to write a Perl program that will ask the user the principal amount, number of years, and interest rate of the loan of the customer, and then the program will compute the interest amount to be paid by the customer and display the result 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 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 I also accepting computer repair, networking and Arduino Project development at a very affordable price.


Program Listing

# interest.pl
# Author  : Jake Rodriguez Pomperada, MAED-IT
# Date    : October 21, 2020
# Website : www.jakerpomperada.blogspot.com  / www.jakerpomperada.com 
# Email   : jakerpomperada@gmail.com

do {
system("cls");
print "\n\n";
print "\tLoan Interest Solver in PERL";
print "\n\n";
print "\tEnter Principal Amount PHP : ";
chomp($principal =<>);
print "\tEnter Number of Years      : ";
chomp($time =<>);
print "\tEnter Percent Rate %       : ";
chomp($rate =<>);
$solve_interest = ($principal * $time * $rate) / 100;
print "\n";
$result = sprintf("%.2f", $solve_interest); 
print "\n";
print "\tThe Interest is PHP $result.";
print "\n\n";
print "\tDo you want to continue Y/N? : ";
chomp($reply =<>);
} while (uc $reply eq 'Y');
print "\n";
print "\tEnd of Program";
print "\n\n";

No comments:

Post a Comment