Sunday, May 29, 2022

Yearly Compounded Interest in C++

 A simple program that I wrote to compute the yearly compounded interest of a loan using a C++ programming language.

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.

Please subscribe to my channel  https://www.youtube.com/channel/UCOs-lpOoIeJoh6gpJthPoGg

=================================================


Want to support my channel?

GCash Account

Jake Pomperada

09173084360


Paypal

https://paypal.me/jakerpomperada


Patreon

https://www.patreon.com/jakerpomperada


Thank you very much for your support.





Program Listing

// compounded_interest.cpp
// Jake Rodriguez Pomperada, MAED-IT, MIT
// www.jakerpomperada.com and www.jakerpomperada.blogspot.com
// jakerpomperada@gmail.com
// Bacolod City, Negros Occidental Philippines

#include <iostream>
#include <iomanip>

using namespace std;

int main()
{
     double amount = 00.;
     double interest_rate = 0.00;
     int years = 0;
     
     cout << "\n\n";
     cout <<"\tYearly Compounded Interest in C++";
     cout << "\n\n";
     cout << "\tGive Amount Loaned : ";
     cin >> amount;
     cout << "\tGive Interest Rate     : ";
     cin >> interest_rate;
     cout << "\tGive Number of Years  : ";
     cin >> years;
     cout << "\n\n";
     for (int year = 1; year <= years; year++)
     {
         double interest = amount * interest_rate / 100;
         amount += interest;
         cout << "\tAfter year " << year << "\n" << fixed << setprecision(2)
                   << "\tPHP Amount: " << amount << "\tInterest: PHP " <<
interest << "\n";

     }
     cout << "\n\n";
     cout <<"\tEnd of Program";
     cout << "\n\n";
}

No comments:

Post a Comment