16/12/2016

C++ Program For Calculate Simple Interest

Problem :- Write A Program For Calculate A Simple Interest .Given Formula Show that to Calculate a Simple Interest .With the following formula you can can calculate a Simple Interest Of Amount Given By User Input 

Formula :-

Simple Interest = ( Amount * Rate * Time ) / 100;

See Also :- C Program For Calculate Simple Interest 

Solution :-

#include<iostream>
using namespace std;
int main()
{
   /*Program By Ghanendra Yadav
     Visit http://www.programmingwithbasics.com/
    */ 
   float amount, rate, time, si;

   cout<<"\nEnter Principal Amount : ";
   cin>>amount;

   cout<<"\nEnter Rate of Interest : ";
   cin>>rate;

   cout<<"\nEnter Period of Time   : ";
   cin>>time;

   si = (amount * rate * time) / 100;
   cout<<"\nSimple Interest : "<< si<<endl;

   return(0);

}

See Also :- Java Program For Calculate Simple Interest 

Output:-


C++ Program For Calculate Simple Interest

Previous Post
Next Post

post written by:

Hi, I’m Ghanendra Yadav, SEO Expert, Professional Blogger, Programmer, and UI Developer. Get a Solution of More Than 500+ Programming Problems, and Practice All Programs in C, C++, and Java Languages. Get a Competitive Website Solution also Ie. Hackerrank Solutions and Geeksforgeeks Solutions. If You Are Interested to Learn a C Programming Language and You Don't Have Experience in Any Programming, You Should Start with a C Programming Language, Read: List of Format Specifiers in C.
Follow Me

0 Comments: