Computer Science, asked by csai7984, 2 months ago

write a program to find and display the simple interest when p=5000,t=5years,r=3percent

Answers

Answered by Mister360
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