Startertutorials Blog
Tutorials and articles related to programming, computer science, technology and others.
Subscribe to Startertutorials.com's YouTube channel for different tutorial and lecture videos.
Home » Programming » C++ Programming » Programs » Others » CPP program to calculate simple interest and compound interest
Suryateja Pericherla Categories: Others. No Comments on CPP program to calculate simple interest and compound interest
5
(3)

In this article we will learn to implement a CPP program to calculate simple interest and compound interest.

 

A program that computes the simple interest and compound interest payable on principal amount(in Rs.) of loan borrowed by the customer from a bank for a given period of time (in years) at specific rate of interest. Assume that interest is compounded monthly.

 

Program is as follows:

#include <iostream>
#include <cmath>
using namespace std;
int main()
{
	int p;
	float r;
	int t;
	cout<<"Enter principal amount: ";
	cin>>p;
	cout<<"Enter rate of interest: ";
	cin>>r;
	cout<<"Enter time period (in years): ";
	cin>>t;
	float si = p*r*t;
	cout<<"Simple interest to be paid is: Rs."<<si<<endl;
	float total = p * pow((1+r/12), (12*t));
	float ci = total - p;
	cout<<"Compound interest to be paid is: Rs. "<<ci<<endl;
	return 0;
}

 

Input and output for the above program are as follows:

Enter principal amount: 10000
Enter rate of interest: 0.1
Enter time period (in years): 5
Simple interest to be paid is: Rs.5000
Compound interest to be paid is: Rs. 6453.08

 


Subscribe to our monthly newsletter. Get notified about latest articles, offers and contests.


How useful was this post?

Click on a star to rate it!

We are sorry that this post was not useful for you!

Let us improve this post!

Tell us how we can improve this post?

Leave a Reply

Your email address will not be published. Required fields are marked *

Facebook
Twitter
Pinterest
Youtube
Instagram
Blogarama - Blog Directory