Computer Science, asked by madhurijaiswal227, 6 months ago

write your own function'si' to find the simple interest rate​

Answers

Answered by ELECTROBRAINY
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 Anonymous
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