-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclassFunc.cpp
More file actions
237 lines (202 loc) · 5.28 KB
/
classFunc.cpp
File metadata and controls
237 lines (202 loc) · 5.28 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
#include<iostream>
#include<ctime>
#include<cstdlib>
#include<fstream>
#include<sstream>
#include "class.h"
using namespace std;
void Account::firstExchange()
{
cout<<"What type of transaction?"<<endl
<<"1. Keep"<<endl
<<"2. Borrow"<<endl<<endl
<<"INPUT : ";
int choice;
cin>>choice;
while(choice!=1 && choice!=2)
{
cout<<"Invalid selection !! Try again : ";
cin>>choice;
}
cout<<"Enter the amount (1-10000): ";
cin>>accountBalance;
while(accountBalance<=0 || accountBalance>10000)
{
cout<<"Invalid input !! Try again : ";
cin>>accountBalance;
}
if(choice==2)
accountBalance*=-1;
}
void Account::balanceExchange()
{
if(accountBalance>=0)
{
cout<<" Current account balance is "<<accountBalance<<" tk."<<endl;
cout<<"1. Money Withdrawal"<<endl
<<"2. Money deposit"<<endl
<<endl<<"INPUT: ";
int choice;
cin>>choice;
while(choice!=1 && choice!=2)
{
cout<<"Invalid selection !! Try again : ";
cin>>choice;
}
cout<<"Enter the amountf tk [1-10000]: ";
double amount;
cin>>amount;
while(true)
{
if(amount>0 && amount<=10000)
{
if(choice==1 && accountBalance<amount)
cout<<"Check your balance and try again : ";
else
break;
}
else
cout<<"Invalid input !! Try again : ";
cin>>amount;
}
if(choice==1)
{
accountBalance-=amount;
}
else
{
accountBalance+=amount;
}
cout<<"New balance is "<<accountBalance<<" tk."<<endl;
}
else if(accountBalance<0)
{
cout<<" Current loan amount is "<<accountBalance*(-1)<<" tk.\n";
cout<<"1. Borrow Again!"<<endl
<<"2. Pay back."<<endl
<<endl<<"INPUT: ";
int choice;
cin>>choice;
while(choice!=1 && choice!=2)
{
cout<<"Invalid selection !! Try again : ";
cin>>choice;
}
cout<<"Enter the amountf tk [1-10000]: ";
double amount;
cin>>amount;
while(true)
{
if(amount>0 && amount<=10000)
{
if(choice==2 && accountBalance*(-1)<amount)
{
cout<<"Check your balance and try again : ";
}
else
break;
}
else
{
cout<<"Invalid input !! Try again : ";
}
cin>>amount;
}
if(choice==1)
{
accountBalance-=amount;
}
else
{
accountBalance+=amount;
}
if(accountBalance==0)
cout<<"New balance is "<<accountBalance<<" tk."<<endl;
else
cout<<"New loan amount is "<<accountBalance*(-1)<<" tk."<<endl;
}
}
int BasicInfo::getId() //Getter Setter
{
return accountId;
}
void BasicInfo::setId(int accountId)
{
this->accountId=accountId; //this pointer
}
string Account::getDate() //Getter Setter
{
return created;
}
double Account::getBalance() //Getter Setter
{
return accountBalance;
}
void Account::saveData(ofstream& fout)
{
fout<<"Account ID: "<<accountId<<endl;
fout<<"Name: "<<name<<endl;
fout<<"Creation Time: "<<created<<endl;
if(accountBalance>=0)
fout<<"Balance Amount: "<<accountBalance<<endl;
else
fout<<"Loan Amount: "<<accountBalance*(-1)<<endl;
fout<<"Address: "<<address<<endl;
fout<<"Email: "<<email<<endl;
fout<<"ContactNo.: "<<contactNo<<endl;
}
void Account::loadData(ifstream& fin)
{
string dummy;
fin>>dummy>>dummy;
fin.ignore();
fin>>accountId;
fin>>dummy;
fin.ignore();
getline(fin,name);
fin>>dummy>>dummy;
fin.ignore();
getline(fin,created);
bool isLoan=false;
fin>>dummy;
if(dummy=="Loan")
isLoan=true;
fin>>dummy;
fin.ignore();
fin>>accountBalance;
if(isLoan==true)
accountBalance*=-1;
fin>>dummy;
fin.ignore();
getline(fin,address);
fin>>dummy;
fin.ignore();
getline(fin,email);
fin>>dummy;
fin.ignore();
getline(fin,contactNo);
}
void BasicInfo::saveBasic(ofstream& fout)
{
fout<<accountId<<" "<<name<<endl;
}
void BasicInfo::loadBasic(ifstream& fin)
{
fin>>accountId;
fin.ignore();
getline(fin,name);
}
ostream& operator<<(ostream& sout,Account ptr)
{
sout<<"Account ID: "<<ptr.getId()<<endl;
sout<<"Name: "<<ptr.name<<endl;
sout<<"Creation Time: "<<ptr.getDate()<<endl;
if(ptr.getBalance()>=0)
sout<<"Balance Amount: "<<ptr.getBalance()<<endl;
else
sout<<"Loan Amount: "<<ptr.getBalance()*(-1)<<endl;
sout<<"Address: "<<ptr.address<<endl;
sout<<"Email: "<<ptr.email<<endl;
sout<<"ContactNo.: "<<ptr.contactNo<<endl;
return sout;
}