Run Code  | API  | Code Wall  | Misc  | Feedback  | Login  | Theme  | Privacy  | Patreon 

Simple interest

//gcc 5.4.0

#include  <stdio.h>
void main()
{int p,r,t;
float s;
scanf("%d%d%d",&p&r&t);
s=p*r*t/100;
printf("%f",s);
} 
 run  | edit  | history  | help 0