#include<stdio.h>
#include<conio.h>
void main()
{
int si,p,r,t;
clrscr();
printf("Enter Principal (P) : ");
scanf("%d",&p);
printf("Enter Rate (R) : ");
scanf("%d",&r);
printf("Enter Time (T) : ");
scanf("%d",&t);
   si=p*r*t/100;
  printf("\nSimple Interest = %d",si);
 getch();
}
INPUT
Enter Principal (P) - 10000
Enter Rate (R) - 5
Enter Time (T) - 2
OUTPUT
Simple Interest = 1000

Leave a Reply

Subscribe to Posts | Subscribe to Comments

All Notes on BCA

All Notes  on BCA
BCA all subjects notes

Total Pageviews

Translate

Powered by Blogger.

Copyright © All Notes on BCA