-
Notifications
You must be signed in to change notification settings - Fork 0
/
Taskno.3
90 lines (77 loc) · 2.59 KB
/
Taskno.3
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
import java.util.Scanner;
// Bank Account Class
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("Deposited: Rs." + amount);
}
public boolean withdraw(double amount) {
if (balance >= amount) {
balance -= amount;
System.out.println("Withdrawn: Rs." + amount);
return true;
} else {
System.out.println("Insufficient balance!");
return false;
}
}
}
// ATM Class
public class ATM {
private BankAccount account;
public ATM(BankAccount account) {
this.account = account;
}
public void displayMenu() {
Scanner scanner = new Scanner(System.in);
int choice;
do {
System.out.println("\nATM 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:
checkBalance();
break;
case 2:
System.out.print("Enter deposit amount: Rs.");
double depositAmount = scanner.nextDouble();
account.deposit(depositAmount);
break;
case 3:
System.out.print("Enter withdrawal amount: Rs.");
double withdrawAmount = scanner.nextDouble();
account.withdraw(withdrawAmount);
break;
case 4:
System.out.println("Thank you for using the ATM!");
break;
default:
System.out.println("Invalid choice. Please try again.");
break;
}
} while (choice != 4);
}
private void checkBalance() {
System.out.println("Your balance: Rs." + account.getBalance());
}
public static void main(String[] args) {
// Create a bank account with an initial balance
BankAccount userAccount = new BankAccount(1000.0); // Replace 1000.0 with initial balance
// Connect ATM with the user's account
ATM atm = new ATM(userAccount);
// Display the ATM menu
atm.displayMenu();
}
}