-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCode.cpp
More file actions
238 lines (210 loc) · 7.46 KB
/
Code.cpp
File metadata and controls
238 lines (210 loc) · 7.46 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
#include <iostream>
#include <iomanip>
#include <string>
#include <cctype>
using namespace std;
const int MAX_ACCOUNTS = 100;
struct Account {
int accountNumber;
string name;
double balance;
string mobileNumber;
};
Account accounts[MAX_ACCOUNTS];
int accountCount = 0;
int nextAccountNumber = 1001;
bool isValidName(const string& name) {
for (char c : name) {
if (!isalpha(c) && c != ' ') {
return false;
}
}
return true;
}
bool isValidMobileNumber(const string& mobile) {
if (mobile.length() != 11 || mobile[0] != '0' || mobile[1] != '3') return false;
for (char c : mobile) {
if (!isdigit(c)) return false;
}
return true;
}
void createAccount() {
if (accountCount >= MAX_ACCOUNTS) {
cout << "Account limit reached. Cannot create more accounts.\n";
return;
}
Account newAccount;
newAccount.accountNumber = nextAccountNumber++;
cout << "Enter the account holder's name: ";
cin.ignore();
getline(cin, newAccount.name);
while (!isValidName(newAccount.name)) {
cout << "Invalid name. Please enter a valid name:\n";
getline(cin, newAccount.name);
}
bool validMobile = false;
while (!validMobile) {
cout << "Enter mobile number (11 digits, starts with 03): ";
cin >> newAccount.mobileNumber;
if (!isValidMobileNumber(newAccount.mobileNumber)) {
cout << "Invalid mobile number. Try again.\n";
} else {
validMobile = true;
}
}
cout << "Enter initial deposit amount (minimum 500): ";
cin >> newAccount.balance;
while (cin.fail() || newAccount.balance < 500) {
cin.clear();
cin.ignore(1000, '\n');
cout << "Invalid amount. Please enter 500 or more:\n";
cin >> newAccount.balance;
}
accounts[accountCount++] = newAccount;
cout << "Account created successfully! Account Number: " << newAccount.accountNumber << "\n";
}
void viewAccountDetails(int accountNumber) {
for (int i = 0; i < accountCount; i++) {
if (accounts[i].accountNumber == accountNumber) {
cout << "\nAccount Number: " << accounts[i].accountNumber << "\n";
cout << "Account Holder: " << accounts[i].name << "\n";
cout << "Mobile Number: " << accounts[i].mobileNumber << "\n";
cout << "Balance: $" << fixed << setprecision(2) << accounts[i].balance << "\n\n";
return;
}
}
cout << "Account not found.\n";
}
void deposit(int accountNumber, double amount) {
for (int i = 0; i < accountCount; i++) {
if (accounts[i].accountNumber == accountNumber) {
accounts[i].balance += amount;
cout << "Deposit successful. New balance: $" << fixed << setprecision(2) << accounts[i].balance << "\n";
return;
}
}
cout << "Account not found.\n";
}
void withdraw(int accountNumber, double amount) {
for (int i = 0; i < accountCount; i++) {
if (accounts[i].accountNumber == accountNumber) {
if (accounts[i].balance >= amount) {
accounts[i].balance -= amount;
cout << "Withdrawal successful. New balance: $" << fixed << setprecision(2) << accounts[i].balance << "\n";
} else {
cout << "Insufficient funds.\n";
}
return;
}
}
cout << "Account not found.\n";
}
void transfer(int fromAccount, int toAccount, double amount) {
int fromIndex = -1, toIndex = -1;
for (int i = 0; i < accountCount; i++) {
if (accounts[i].accountNumber == fromAccount) fromIndex = i;
if (accounts[i].accountNumber == toAccount) toIndex = i;
}
if (fromIndex == -1 || toIndex == -1) {
cout << "One or both accounts not found.\n";
return;
}
if (accounts[fromIndex].balance >= amount) {
accounts[fromIndex].balance -= amount;
accounts[toIndex].balance += amount;
cout << "Transfer successful.\n";
} else {
cout << "Insufficient funds in source account.\n";
}
}
void deleteAccount(int accountNumber) {
int index = -1;
for (int i = 0; i < accountCount; i++) {
if (accounts[i].accountNumber == accountNumber) {
index = i;
break;
}
}
if (index == -1) {
cout << "Account not found.\n";
return;
}
for (int i = index; i < accountCount - 1; i++) {
accounts[i] = accounts[i + 1];
}
accountCount--;
cout << "Account deleted successfully.\n";
}
void viewAllAccounts() {
if (accountCount == 0) {
cout << "No accounts to display.\n";
return;
}
for (int i = 0; i < accountCount; i++) {
cout << "\nAccount Number: " << accounts[i].accountNumber << "\n";
cout << "Account Holder: " << accounts[i].name << "\n";
cout << "Mobile Number: " << accounts[i].mobileNumber << "\n";
cout << "Balance: $" << fixed << setprecision(2) << accounts[i].balance << "\n";
}
cout << "\n";
}
void searchAccount(int accountNumber) {
viewAccountDetails(accountNumber);
}
void displayMenu() {
cout << "\n1. Create Account\n2. View Account Details\n3. Deposit Money\n4. Withdraw Money\n5. Transfer Funds\n6. Delete Account\n7. View All Accounts\n8. Search Account\n9. Exit\nEnter your choice: ";
}
int main() {
int choice;
do {
displayMenu();
cin >> choice;
if (cin.fail()) {
cin.clear();
cin.ignore(1000, '\n');
cout << "Invalid input. Enter a number.\n";
continue;
}
int accountNumber, toAccount;
double amount;
switch (choice) {
case 1: createAccount(); break;
case 2:
cout << "Enter account number: ";
cin >> accountNumber;
viewAccountDetails(accountNumber); break;
case 3:
cout << "Enter account number: ";
cin >> accountNumber;
cout << "Enter amount to deposit: ";
cin >> amount;
deposit(accountNumber, amount); break;
case 4:
cout << "Enter account number: ";
cin >> accountNumber;
cout << "Enter amount to withdraw: ";
cin >> amount;
withdraw(accountNumber, amount); break;
case 5:
cout << "Enter source account number: ";
cin >> accountNumber;
cout << "Enter destination account number: ";
cin >> toAccount;
cout << "Enter amount to transfer: ";
cin >> amount;
transfer(accountNumber, toAccount, amount); break;
case 6:
cout << "Enter account number to delete: ";
cin >> accountNumber;
deleteAccount(accountNumber); break;
case 7: viewAllAccounts(); break;
case 8:
cout << "Enter account number: ";
cin >> accountNumber;
searchAccount(accountNumber); break;
case 9: cout << "Thank you for using the system.\n"; break;
default: cout << "Invalid choice. Try again.\n";
}
} while (choice != 9);
return 0;
}