write a program to find and display the simple interest when p=5000,t=5years,r=3percent
Answers
Answered by
1
Answer:
Let's use C
Explanation:
#include<stdio.h>
int main()
{
float P , R , T , SI ;
P =34000; R =30; T = 5;
SI = (P*R*T)/100;
printf("\n\n Simple Interest is : %f", SI);
return (0);
}
Similar questions