write a program to calculate on the simple interest on a principle amounts where the principle time and rate are input by the user
Answers
Answered by
1
Answer:
C
#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
English,
1 month ago
Accountancy,
1 month ago
Math,
2 months ago
Biology,
2 months ago
English,
10 months ago