-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnewestATM.cpp
More file actions
executable file
·288 lines (238 loc) · 7.8 KB
/
newestATM.cpp
File metadata and controls
executable file
·288 lines (238 loc) · 7.8 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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
/*-------------------------------------------*
* University of Buea *
* Dept: Computer Science *
* CSC305 Course Project *
*-------------------------------------------*
* Program to simulation an ATM *
* ------------------------------------------*
* Author: Ngala Dirane Ngiri *
* Matricule Number: SC14B371 *
*-------------------------------------------*/
#include <iostream>
#include <string>
#include <cstdlib>
#include <iomanip>
#include <stdlib.h>
#include <fstream>
#include"ClientData.h"
#include"newestATM.h"
using namespace std;
// constructor for the ATM project
Account::Account(string name, int accNo, int code, double amt, int Bamt)
: UserName(name),
accountNo(accNo),
pin(code),
balance(amt),
Borrow(Bamt)
{ /*empty body */}; // end of constructor
void Account::SeeAllAccounts(){
int account;
string name;
double bal;
int code, AccN;
ifstream database("ATMData.txt", ios::in);
//exit program if the file cannot open
if (!database){
cerr<<"\nFile could not be opened."<<endl;
exit(1);
}
cout<<left<<setw(8)<<"\nName"<<setw(13)
<<"Account No"<<setw(13)<<"PIN code"<<setw(13)<<"Balance"<<endl<<fixed<<showpoint;
database>>name>>AccN>>code>>bal;
while(!database.eof()){
cout<<left<<setw(8)<<name<<setw(13)<<AccN
<<setw(13)<<code<<setw(8)<<setprecision(1)<<right<<bal<<endl;
database>>name>>AccN>>code>>bal;
}
database.close();
char ans;
cout<<"\n\nDo you want another transaction?"
<<"\n(...Enter \'y\' to continue or \'n\' to Exit...)";
cin>>ans;
if ((ans = 'y' )|| (ans = 'Y'))
DisplayMenuScreen();
else
exit(1);
} //end of See All Accounts
void Account::Withdrawal(){
double amt;
cout<<"\n\tEnter amount to withdraw\n"
<<"\tAmount Entered : ";
cin>>amt;
if (amt > balance + 10000)
cout<<"Insufficient funds";
else
balance -= amt;
}
void Account::Deposit(){
system("cls");
// ofstream constructor to open file Mydata.txt
ofstream database("ATMdata.txt", ios::app);
// exit program if unable to create file database.txt
if (!database) {
cerr<<"\nThe database could not be opened."<<endl;
exit(1); // exit program and ignore any othe instruction
}
int account, code;
string name;
double amt;
cout <<"\nPlease enter name : ";
cin >>name;
cout <<"\nPlease enter account number : ";
cin >>account;
cout <<"\nPlease enter PIN number : ";
cin >>code;
cout <<"\nPlease enter amount to deposit : ";
cin >>amt;
database<<name<<' '<<account<<' '<<code<<' '<<amt<<endl;
database.close();
cout<<"\nDeposit transaction successfully completed.";
char ans;
cout<<"\n\nDo you want another transaction?"
<<"\n(...Enter \'y\' to continue or \'n\' to Exit...)";
cin>>ans;
if ((ans = 'y' )|| (ans = 'Y'))
DisplayMenuScreen();
else
exit(1);
}// end of deposits
void Account::CheckBalance(){
cout<<"\nThe net balance is "
<<balance<<endl;
}
void Account::SeeMyAccouts(){
cout<<left<<setw(10)<<"UserName"<<setw(13)<<"AccountNo"
<<setw(7)<<right<<setw(13)<<"Balance"<<endl;
cout<<left<<setw(10)<<UserName<<setw(13)<<accountNo
<<setw(7)<<right<<setw(13)<<balance<<endl;
}
void Account::SetAtm(){
int amt;
cout<<"\nPlease enter amount to load the ATM"
<<"\nAmount Entered : ";
cin>>amt;
Borrow += amt;
}
//function to display Login Screen
void Account::DisplayLoginScreen(void)
{
system("cls");
cout << "\n\t\t------------------------------------------"
<< "\n\t\t| |"
<< "\n\t\t| Welcome to ATM Simulation |"
<< "\n\t\t| ----------------------------- |"
<< "\n\t\t| |"
<< "\n\t\t| Designed by: |"
<< "\n\t\t| Ngala Dirane Ngiri |"
<< "\n\t\t| ------------ |"
<< "\n\t\t| Matricule No: SC14B371 |"
<< "\n\t\t| |"
<< "\n\t\t------------------------------------------"
<< "\n\n\t\t Login Menu"
<< "\n\t\t ----------------"
<< "\n\t\t 1 - Old User"
<< "\n\t\t 2 - New User"
<< "\n\t\t 3 - Administrator"
<< "\n\t\t 4 - Exit"
<< "\n\n\t\t Select option using (1 - 4)"
<< "\n\t\t Option Selected : ";
return;
} // end of function DisplayLoginScreen()
//function to display Main menu Screen
void Account::DisplayMenuScreen( void )
{
system("cls");
cout << "\n\t\t------------------------------------------"
<< "\n\t\t| |"
<< "\n\t\t| Welcome to ATM Simulation |"
<< "\n\t\t| ----------------------------- |"
<< "\n\t\t| |"
<< "\n\t\t| Designed by: |"
<< "\n\t\t| Ngala Dirane Ngiri |"
<< "\n\t\t| ------------ |"
<< "\n\t\t| Matricule No: SC14B371 |"
<< "\n\t\t| |"
<< "\n\t\t------------------------------------------"
<< "\n\n\t\t Main Menu"
<< "\n\t\t --------------"
<< "\n\t\t 1 - Withdrawal"
<< "\n\t\t 2 - Deposit"
<< "\n\t\t 3 - Check Balance"
<< "\n\t\t 4 - See Account Details"
<< "\n\t\t 5 - Exit"
<< "\n\n\t\t Select option using (1 - 5)"
<< "\n\t\t Option Selected : ";
int option;
cin>>option;
switch (option){
case 1:
system("cls");
Withdrawal();
break;
case 2:
Deposit();
break;
case 3:
CheckBalance();
break;
case 4:
SeeMyAccouts();
break;
case 5:
DisplayLoginScreen();
break;
default:
cout<<"\n\t\t Invalid choice\n";
DisplayLoginScreen();
break;
}
return;
} // end of function DisplayMenuScreen()
//The commander-in-chief. The one that pulls the trigger for the maggic to begin.
void Account::Launch()
{
system("cls");
DisplayLoginScreen();
int Login;
cin>>Login;
switch (Login){
case 1:
system("cls");
searchAccount();
break;
case 2:
createAccount();
break;
case 3:
int choice;
cout<< "\n\t\t 1 - See All Acounts"
<< "\n\t\t 2 - Reset ATM"
<< "\n\t\t 3 - Exit"
<< "\n\n\t\t Select option using (1 - 3)"
<< "\n\t\t Option Selected : ";
switch(choice){
case 1:
SeeAllAccounts();
break;
case 2:
SetAtm();
break;
case 3:
DisplayLoginScreen();
break;
default:
cout<<"\n\t\tinvalid option\n";
DisplayLoginScreen();
break;
}
break;
case 4:
system("cls");
cout<<"THANKYOU GOODBYE!!!";
DisplayLoginScreen();
break;
default:
cout<<"\n\t\tInvalid choice\n";
DisplayLoginScreen();
}
}