-
Notifications
You must be signed in to change notification settings - Fork 142
/
ATM_Interface.java
211 lines (184 loc) · 6.01 KB
/
ATM_Interface.java
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
import java.util.*;
class Transaction {
String type;
double amount;
Date timestamp;
public Transaction(String type, double amount) {
this.type = type;
this.amount = amount;
this.timestamp = new Date();
}
}
class Account {
String userId;
String userPin;
double balance;
List<Transaction> transactions;
public Account(String userId, String userPin) {
this.userId = userId;
this.userPin = userPin;
this.balance = 0.0;
this.transactions = new ArrayList<>();
}
public void deposit(double amount) {
balance += amount;
transactions.add(new Transaction("Deposit", amount));
}
public void withdraw(double amount) {
if (balance >= amount) {
balance -= amount;
transactions.add(new Transaction("Withdraw", amount));
} else {
System.out.println("Insufficient balance.");
}
}
public void transfer(Account recipient, double amount) {
if (balance >= amount) {
balance -= amount;
recipient.deposit(amount);
transactions.add(new Transaction("Transfer", amount));
} else {
System.out.println("Insufficient balance.");
}
}
public void showTransactionHistory() {
System.out.println("Transaction History:");
for (Transaction transaction : transactions) {
System.out.println(transaction.type + " - $" + transaction.amount + " at " + transaction.timestamp);
}
}
}
public class ATM_Interface {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
Account account = new Account("user123", "1234");
System.out.print("Enter User ID: ");
String userIdInput = sc.nextLine();
System.out.print("Enter User PIN: ");
String userPinInput = sc.nextLine();
if (userIdInput.equals(account.userId) && userPinInput.equals(account.userPin)) {
System.out.println("Login successful!");
boolean continueRunning = true;
while (continueRunning) {
System.out.println("\nATM Menu:");
System.out.println("1. Transactions History");
System.out.println("2. Withdraw");
System.out.println("3. Deposit");
System.out.println("4. Transfer");
System.out.println("5. Quit");
System.out.print("Select an option: ");
int choice = sc.nextInt();
switch (choice) {
case 1:
account.showTransactionHistory();
break;
case 2:
System.out.print("Enter amount to withdraw: ");
double withdrawAmount = sc.nextDouble();
account.withdraw(withdrawAmount);
break;
case 3:
System.out.print("Enter amount to deposit: ");
double depositAmount = sc.nextDouble();
account.deposit(depositAmount);
break;
case 4:
System.out.print("Enter recipient's User ID: ");
String recipientId = sc.next();
System.out.print("Enter amount to transfer: ");
double transferAmount = sc.nextDouble();
// For simplicity, assuming recipient's account is the same as the current account
account.transfer(account, transferAmount);
break;
case 5:
continueRunning = false;
System.out.println("Exiting ATM. Thank you!");
break;
default:
System.out.println("Invalid choice! Please select a valid option.");
}
}
} else {
System.out.println("Login failed. Incorrect User ID or User PIN.");
}
}
}
// <------------------------------------For Sample UserId and Passowrd ------------------------------------------>
// UserId : user123 & Password : 1234
// <---------------------------------------------OUTPUT ---------------------------------------------------------->
// Enter User ID: user123
// Enter User PIN: 1234
// Login successful!
// ATM Menu:
// 1. Transactions History
// 2. Withdraw
// 3. Deposit
// 4. Transfer
// 5. Quit
// Select an option: 3
// Enter amount to deposit: 1500
// ATM Menu:
// 1. Transactions History
// 2. Withdraw
// 3. Deposit
// 4. Transfer
// 5. Quit
// Select an option: 1
// Transaction History:
// Deposit - $1500.0 at Sat Oct 07 20:37:39 IST 2023
// ATM Menu:
// 1. Transactions History
// 2. Withdraw
// 3. Deposit
// 4. Transfer
// 5. Quit
// Select an option: 2
// Enter amount to withdraw: 500
// ATM Menu:
// 1. Transactions History
// 2. Withdraw
// 3. Deposit
// 4. Transfer
// 5. Quit
// Select an option: 1
// Transaction History:
// Deposit - $1500.0 at Sat Oct 07 20:37:39 IST 2023
// Withdraw - $500.0 at Sat Oct 07 20:37:52 IST 2023
// ATM Menu:
// 1. Transactions History
// 2. Withdraw
// 3. Deposit
// 4. Transfer
// 5. Quit
// Select an option: 3
// Enter amount to deposit: 5000
// ATM Menu:
// 1. Transactions History
// 2. Withdraw
// 3. Deposit
// 4. Transfer
// 5. Quit
// Select an option: 4
// Enter recipient's User ID: user234
// Enter amount to transfer: 4500
// ATM Menu:
// 1. Transactions History
// 2. Withdraw
// 3. Deposit
// 4. Transfer
// 5. Quit
// Select an option: 1
// Transaction History:
// Deposit - $1500.0 at Sat Oct 07 20:37:39 IST 2023
// Withdraw - $500.0 at Sat Oct 07 20:37:52 IST 2023
// Deposit - $5000.0 at Sat Oct 07 20:38:07 IST 2023
// Deposit - $4500.0 at Sat Oct 07 20:38:21 IST 2023
// Transfer - $4500.0 at Sat Oct 07 20:38:21 IST 2023
// ATM Menu:
// 1. Transactions History
// 2. Withdraw
// 3. Deposit
// 4. Transfer
// 5. Quit
// Select an option: 5
// Exiting ATM. Thank you!