Math, asked by aditya12321, 7 months ago

write a program to calculate the simpleinteresr​

Answers

Answered by omkarchandorkar20
0

#include<stdio.h>

int main()

{

int p,r,t,int_amt;

printf("Input principle, Rate of interest & time to find simple interest: \n");

scanf("%d%d%d",&p,&r,&t);

int_amt=(p*r*t)/100;

printf("Simple interest = %d",int_amt);

return 0;

}

Similar questions