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<stdio.h>
int main()
{
/*Program By Ghanendra Yadav
Visit http://www.programmingwithbasics.com/
*/
float amount, rate, time, si;
printf("\nEnter Principal Amount : ");
scanf("%f", &amount);
printf("\nEnter Rate of Interest : ");
scanf("%f", &rate);
printf("\nEnter Period of Time : ");
scanf("%f", &time);
si = (amount * rate * time) / 100;
printf("\nSimple Interest : %f", si);
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<stdio.h>
int main()
{
/*Program By Ghanendra Yadav
Visit http://www.programmingwithbasics.com/
*/
float amount, rate, time, si;
printf("\nEnter Principal Amount : ");
scanf("%f", &amount);
printf("\nEnter Rate of Interest : ");
scanf("%f", &rate);
printf("\nEnter Period of Time : ");
scanf("%f", &time);
si = (amount * rate * time) / 100;
printf("\nSimple Interest : %f", si);
return(0);
}
See Also :- Java Program For Calculate Simple Interest
Output:-
0 Comments: