-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAtm interface.java
More file actions
95 lines (83 loc) · 2.97 KB
/
Atm interface.java
File metadata and controls
95 lines (83 loc) · 2.97 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
import java.util.Scanner;
// Class to represent the Bank Account
class BankAccount {
private double balance;
public BankAccount(double initialBalance) {
this.balance = initialBalance;
}
// Deposit method
public void deposit(double amount) {
if (amount > 0) {
balance += amount;
System.out.println("Successfully deposited: ₹" + amount);
} else {
System.out.println("Invalid amount! Deposit must be greater than 0.");
}
}
// Withdraw method
public void withdraw(double amount) {
if (amount > balance) {
System.out.println("Insufficient balance! Unable to withdraw.");
} else if (amount <= 0) {
System.out.println("Invalid amount! Withdrawal must be greater than 0.");
} else {
balance -= amount;
System.out.println("Successfully withdrawn: ₹" + amount);
}
}
// Check Balance method
public double checkBalance() {
return balance;
}
}
// Class to represent the ATM Machine
class ATM {
private BankAccount account;
private Scanner scanner;
public ATM(BankAccount account) {
this.account = account;
this.scanner = new Scanner(System.in);
}
// Method to display the ATM menu
public void start() {
while (true) {
System.out.println("\n--- ATM Menu ---");
System.out.println("1. Check Balance");
System.out.println("2. Deposit Money");
System.out.println("3. Withdraw Money");
System.out.println("4. Exit");
System.out.print("Choose an option: ");
int choice = scanner.nextInt();
switch (choice) {
case 1:
System.out.println("Your current balance is: ₹" + account.checkBalance());
break;
case 2:
System.out.print("Enter the amount to deposit: ₹");
double depositAmount = scanner.nextDouble();
account.deposit(depositAmount);
break;
case 3:
System.out.print("Enter the amount to withdraw: ₹");
double withdrawAmount = scanner.nextDouble();
account.withdraw(withdrawAmount);
break;
case 4:
System.out.println("Thank you for using the ATM. Goodbye!");
return;
default:
System.out.println("Invalid option! Please try again.");
}
}
}
}
// Main class to test the ATM interface
public class ATMInterface {
public static void main(String[] args) {
// Initialize the bank account with an initial balance
BankAccount account = new BankAccount(5000.0); // Initial balance: ₹5000
// Create an ATM object and start the ATM interface
ATM atm = new ATM(account);
atm.start();
}
}