#include<stdio.h>
#include<conio.h>
{
clrscr();
float p=1000,r=5,t=3;
float si=(p*r*t)/100;
printf("Simple Interest = %f",si);
getch();
}
#include<conio.h>
{
clrscr();
float p=1000,r=5,t=3;
float si=(p*r*t)/100;
printf("Simple Interest = %f",si);
getch();
}
Comments
Post a Comment