-
Notifications
You must be signed in to change notification settings - Fork 11
/
ATMSystem.java
82 lines (70 loc) · 2.47 KB
/
ATMSystem.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
import java.util.Scanner;
class Account {
private String accountNumber;
private String pin;
private double balance;
public Account(String accountNumber, String pin, double balance) {
this.accountNumber = accountNumber;
this.pin = pin;
this.balance = balance;
}
public String getAccountNumber() {
return accountNumber;
}
public String getPin() {
return pin;
}
public double getBalance() {
return balance;
}
public void deposit(double amount) {
balance += amount;
}
public void withdraw(double amount) {
if (balance >= amount) {
balance -= amount;
} else {
System.out.println("Insufficient funds");
}
}
}
public class ATMSystem {
public static void main(String[] args) {
// Sample account
Account account = new Account("123456", "1234", 1000.0);
// Initialize the ATM
Scanner scanner = new Scanner(System.in);
int choice;
do {
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("Enter your choice: ");
choice = scanner.nextInt();
switch (choice) {
case 1:
System.out.println("Current Balance: $" + account.getBalance());
break;
case 2:
System.out.print("Enter the deposit amount: $");
double depositAmount = scanner.nextDouble();
account.deposit(depositAmount);
System.out.println("Deposit successful. New balance: $" + account.getBalance());
break;
case 3:
System.out.print("Enter the withdrawal amount: $");
double withdrawalAmount = scanner.nextDouble();
account.withdraw(withdrawalAmount);
System.out.println("Withdrawal successful. New balance: $" + account.getBalance());
break;
case 4:
System.out.println("Thank you for using our ATM. Goodbye!");
break;
default:
System.out.println("Invalid choice. Please try again.");
}
} while (choice != 4);
}
}