-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTASK3.java
More file actions
95 lines (83 loc) · 2.81 KB
/
TASK3.java
File metadata and controls
95 lines (83 loc) · 2.81 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
/*
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) {
balance += amount;
}
public boolean withdraw(double amount) {
if (amount <= balance) {
balance -= amount;
return true;
} else {
return false;
}
}
}
class ATM {
private BankAccount account;
public ATM(BankAccount account) {
this.account = account;
}
public void displayMenu() {
System.out.println("WELCOME TO THE ATM !!");
System.out.println("1. CHECK BALANCE");
System.out.println("2. DEPOSITE");
System.out.println("3. WITHDRAW");
System.out.println("4. EXIT");
}
public void processTransaction() {
Scanner scanner = new Scanner(System.in);
int choice;
double amount;
while (true) {
displayMenu();
System.out.print("Enter your choice: ");
choice = scanner.nextInt();
switch (choice) {
case 1:
System.out.println("Your balance is: Rs. " + account.getBalance());
break;
case 2:
System.out.print("Enter the deposit amount: Rs. ");
amount = scanner.nextDouble();
if (amount > 0) {
account.deposit(amount);
System.out.println("Deposit successful.");
} else {
System.out.println("Invalid deposit amount.");
}
break;
case 3:
System.out.print("Enter the withdrawal amount: Rs. ");
amount = scanner.nextDouble();
if (amount > 0 && account.withdraw(amount)) {
System.out.println("Withdrawal successful.");
} else {
System.out.println("Invalid withdrawal amount or insufficient balance.");
}
break;
case 4:
System.out.println("Thank you so much for using the ATM. Goodbye!");
return;
default:
System.out.println("Invalid choice. Please try again.");
}
}
}
}
public class TASK3 {
public static void main(String[] args) {
BankAccount userAccount = new BankAccount(500.0); // Initial balance of Rs. 500
ATM atm = new ATM(userAccount);
atm.processTransaction();
}
}