-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathATM_Interface.java
115 lines (91 loc) · 2.99 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
//CODSOFT Internship A-2
//ATM Interface
import java.util.Scanner;
class BankAccount {
private double balance;
public BankAccount(double initialBalance) {
balance = initialBalance;
}
public double getBalance() {
return balance;
}
public void deposit(double amount) {
if (amount > 0) {
balance += amount;
System.out.println("Deposit successful. New balance: $" + balance);
} else {
System.out.println("Invalid deposit amount.");
}
}
public boolean withdraw(double amount) {
if (amount > 0 && amount <= balance) {
balance -= amount;
System.out.println("Withdrawal successful. New balance: $" + balance);
return true;
} else {
System.out.println("Insufficient balance or invalid withdrawal amount.");
return false;
}
}
}
class ATM {
private BankAccount userAccount;
public ATM(BankAccount account) {
userAccount = account;
}
public void displayMenu() {
System.out.println("\nATM Menu:");
System.out.println("1. Check Balance");
System.out.println("2. Deposit Funds");
System.out.println("3. Withdraw Funds");
System.out.println("4. Exit");
}
public void run() {
Scanner input = new Scanner(System.in);
int choice;
do {
displayMenu();
System.out.print("Enter your choice (1-4): ");
choice = input.nextInt();
switch (choice) {
case 1:
checkBalance();
break;
case 2:
depositFunds();
break;
case 3:
withdrawFunds();
break;
case 4:
System.out.println("Thank you for using the ATM!");
break;
default:
System.out.println("Invalid choice. Please enter a valid option.");
}
} while (choice != 4);
}
public void checkBalance() {
double balance = userAccount.getBalance();
System.out.println("Your account balance: $" + balance);
}
public void depositFunds() {
Scanner input = new Scanner(System.in);
System.out.print("Enter the deposit amount: $");
double amount = input.nextDouble();
userAccount.deposit(amount);
}
public void withdrawFunds() {
Scanner input = new Scanner(System.in);
System.out.print("Enter the withdrawal amount: $");
double amount = input.nextDouble();
userAccount.withdraw(amount);
}
}
public class ATM_Interface {
public static void main(String[] args) {
BankAccount userAccount = new BankAccount(0);
ATM atm = new ATM(userAccount);
atm.run();
}
}