simple interest rate
#include
using namespace std;
int main()
{
int p,t;
float r,A;
cout<<"Plese enter the intial principal balance ="<>p;
cout<<"Plese enter the annual interest rate ="<>r;
cout<<"Plese enter the time (in months) ="<>t;
A=p*(1+r*t);
cout<<"The simple intrest rate is="<
|