-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdynamic.cpp
52 lines (52 loc) · 1.34 KB
/
dynamic.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# dynamic.cpp
#include<iostream>
using namespace std;
class fixed_deposit
{long int p_amount; //principal amount
int years;
float rate;
float r_value;
public:
fixed_deposit(){ }
fixed _deposit(long int p,int y,float r=0.12);
fixed_deposit(long int p,int y,int r);
void display(void);};
fixed_deposit::fixed_deposit(long int p,int y,float r)
{p_amount=p;
years=y;
rate=r;
r_value=p_amount;
for(int i=1;i<=y;i++)
r_value=r_value*(1.0+r);
fixed_deposit::fixed_deposit(long int p,int y,int r)
{p_amount=p;
years=y;
rate=r;
r_value=p_amount;
for(int i=1;i<=y;i++)
r_value=r_value*(1.0+float(r)/100);}
void fixed_deposit::display(void)
{cout<<"\n"<<"principal amount="<<p_amount<<"\n"<<"return value="<<r_value<<"\n";}
int main()
{fixed_deposit fd1,fd2,fd3;//deposits created
long int p;
int y;
flaot r;
int R;
cout<<"enter amount,period,interest rate(in percent)"<<"\n";
cin>>p>>y>>R;
fd1=fixed_deposit(p,y,R);
cout<<"enter amount,period,interest rate(in decimal)"<<"\n";
cin>>p>>y>>r;
fd2=fixed_deposit(p,y,r);
cout<<"enter amount and period\n";
cin>>p>>y;
fd3=fixed_deposit(p,y);
cout<<"\n deposit 1";
fd1.display();
cout<<"\n deposit 2";
fd2.display();
cout<<"\n deposit 3";
fd3.display();
return 0;
}