-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathATM.java
More file actions
80 lines (63 loc) · 2.37 KB
/
ATM.java
File metadata and controls
80 lines (63 loc) · 2.37 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
//TASK 4- ATM INTERFACE
import java.util.Scanner;
class BankAccount {
private double balance;
public BankAccount(double initialBalance) {
this.balance = initialBalance;
}
public double getBalance() {
return balance;
}
public void deposit(double amount) {
balance += amount;
System.out.println("Deposit successful. Current balance: " + balance);
}
public boolean withdraw(double amount) {
if (amount > balance) {
System.out.println("Insufficient funds. Withdrawal failed.");
return false;
} else {
balance -= amount;
System.out.println("Withdrawal successful. Current balance: " + balance);
return true;
}
}
}
public class ATM {
private static BankAccount userAccount;
public static void main(String[] args) {
userAccount = new BankAccount(1000.0);
Scanner sc = new Scanner(System.in);
while (true) {
System.out.println("********* WELCOME TO ATM *********");
System.out.println("ATM Menu:");
System.out.println("1. Check Balance");
System.out.println("2. Deposit");
System.out.println("3. Withdraw");
System.out.println("4. Exit");
System.out.print("Choose an option: ");
int choice = sc.nextInt();
switch (choice) {
case 1:
System.out.println("Current balance: " + userAccount.getBalance());
break;
case 2:
System.out.print("Enter deposit amount: ");
double depositAmount = sc.nextDouble();
userAccount.deposit(depositAmount);
break;
case 3:
System.out.print("Enter withdrawal amount: ");
double withdrawalAmount = sc.nextDouble();
userAccount.withdraw(withdrawalAmount);
break;
case 4:
System.out.println("Exiting ATM. Thank you!");
sc.close();
System.exit(0);
default:
System.out.println("Invalid choice. Please choose a valid option.");
}
}
}
}