Friday, October 28, 2016

C++(Simple Intrest)

5-
Write a program which accept principle, rate and time from user and print the simple interest. 

#include<iostream.h>
#include<conio.h>
 
int main()
{
      int p,r,t,i;
      cout<<"Enter Principle : ";
      cin>>p;
      cout<<"Enter Rate : ";
      cin>>r;
      cout<<"Enter Time : ";
      cin>>t;
      i=(p*r*t)/100;
      cout<<"Simple interest is : "<<i;
 
      getch();
      return 0;
}

No comments:

Post a Comment