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:-
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:-
0 Comments: