write your own function'si' to find the simple interest rate
Answers
Answered by
11
Answer:
To calculate simple interest, use this formula:
Principal x rate x time = interest.
$100 x .05 x 1 = $5 simple interest for one year.
$100 x .05 x 3 = $15 simple interest for three years.
Answered by
10
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
Social Sciences,
3 months ago
English,
3 months ago
Science,
3 months ago
Math,
6 months ago
World Languages,
1 year ago