-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathATM.java
More file actions
82 lines (70 loc) · 3.03 KB
/
ATM.java
File metadata and controls
82 lines (70 loc) · 3.03 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
import java.util.Scanner;
public class ATM {
public static void main(String[] args)
{
Scanner scanner = new Scanner(System.in);
int pin = 1234; // Default PIN
double balance = 1000.00; // Default balance
int attempts = 3; // Number of attempts for PIN entry
System.out.println("Welcome to the ATM!");
while (attempts > 0) {
System.out.print("Please enter your PIN: ");
int enteredPin = scanner.nextInt();
if (enteredPin == pin) {
System.out.println("PIN accepted. You can now access your account.");
break;
} else {
attempts--;
System.out.println("Incorrect PIN. You have " + attempts + " attempts left.");
}
}
if (attempts == 0) {
System.out.println("Too many incorrect attempts. Your account is locked.");
return;
}
boolean exit = false;
while (!exit) {
System.out.println("\nATM 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("Please select an option: ");
int choice = scanner.nextInt();
switch (choice) {
case 1:
System.out.printf("Your current balance is: $%.2f\n", balance);
break;
case 2:
System.out.print("Enter amount to deposit: $");
double depositAmount = scanner.nextDouble();
if (depositAmount > 0) {
balance += depositAmount;
System.out.printf("$%.2f deposited successfully.\n", depositAmount);
} else {
System.out.println("Invalid deposit amount.");
}
break;
case 3:
System.out.print("Enter amount to withdraw: $");
double withdrawAmount = scanner.nextDouble();
if (withdrawAmount > 0 && withdrawAmount <= balance) {
balance -= withdrawAmount;
System.out.printf("$%.2f withdrawn successfully.\n", withdrawAmount);
} else if (withdrawAmount > balance) {
System.out.println("Insufficient funds.");
} else {
System.out.println("Invalid withdrawal amount.");
}
break;
case 4:
exit = true;
System.out.println("Thank you for using the ATM");
System.out.println("Have a great day!!!");
break;
default:
System.out.println("Invalid option. Please try again.");
}
}
}
}