write a program to calculate simple intrest
for any Principal amount with rate
as 7.2.% and time as 3 years.
Answers
Answered by
1
#include<stdio.h>
int main()
{
float P , R , T , SI ;
P =34000; R =7.2%; T = 3;
SI = (P*R*T)/100;
printf("\n\n Simple Interest is : %f", SI);
return (0);
}
Similar questions