-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathATM_Interface.java
More file actions
93 lines (88 loc) · 2.56 KB
/
ATM_Interface.java
File metadata and controls
93 lines (88 loc) · 2.56 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
import java.util.Scanner;
class BankAccount
{
private double bal;
public BankAccount(double inibal)
{
bal = inibal;
}
public double getBalance()
{
return bal;
}
public void deposit(double amt)
{
if (amt > 0)
{
bal += amt;
System.out.println("Deposited: $" + amt);
}
else
{
System.out.println("Invalid deposit amount");
}
}
public boolean withdraw(double amt)
{
if (amt > 0 && amt <= bal)
{
bal -= amt;
System.out.println("Withdrawn: $" + amt);
return true;
}
else if (amt > bal)
{
System.out.println("Insufficient balance");
}
else
{
System.out.println("Invalid withdrawal amount");
}
return false;
}
}
class ATM_Interface
{
public static void main(String[] args)
{
Scanner sc = new Scanner(System.in);
System.out.print("Enter initial account balance: $");
double initialBalance = sc.nextDouble();
BankAccount act = new BankAccount(initialBalance);
boolean quit = false;
while (!quit)
{
System.out.println("\nATM Options:");
System.out.println("1. Check Balance");
System.out.println("2. Deposit");
System.out.println("3. Withdraw");
System.out.println("4. Quit");
System.out.print("Choose an option (1/2/3/4): ");
int ch = sc.nextInt();
switch (ch) {
case 1:
System.out.println("Account Balance: $" + act.getBalance());
break;
case 2:
System.out.print("Enter the deposit amount: $");
double da = sc.nextDouble();
act.deposit(da);
break;
case 3:
System.out.print("Enter the withdrawal amount: $");
double wa = sc.nextDouble();
if (act.withdraw(wa))
{
System.out.println("Remaining Balance: $" + act.getBalance());
}
break;
case 4:
quit = true;
System.out.println("Thank you for using the ATM!");
break;
default:
System.out.println("Invalid choice. Please select a valid option");
}
}
}
}