-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathATMInterface.java
More file actions
78 lines (77 loc) · 2.47 KB
/
Copy pathATMInterface.java
File metadata and controls
78 lines (77 loc) · 2.47 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
import java.util.Scanner;
class Account
{
private int balance;
public Account(int initialBalance)
{
balance = initialBalance;
}
public int getBalance()
{
return balance;
}
public void deposit(int amount)
{
if (amount > 0)
{
balance += amount;
System.out.println(amount + " deposited successfully.");
} else
{
System.out.println("Invalid deposit amount.");
}
}
public void withdraw(int amount)
{
if (amount > 0 && amount <= balance)
{
balance -= amount;
System.out.println(amount + " withdrawn successfully.");
} else
{
System.out.println("Invalid withdrawal amount or insufficient balance.");
}
}
}
public class ATMInterface
{
public static void main(String[] args)
{
Scanner scanner = new Scanner(System.in);
System.out.print("Enter balance: ");
int initialBalance = scanner.nextInt();
Account account = new Account(initialBalance);
while (true)
{
System.out.println("\nMenu:");
System.out.println("1. Check Balance");
System.out.println("2. Deposit Amount");
System.out.println("3. Withdraw Amount");
System.out.println("4. Exit");
System.out.print("Select an option: ");
int choice = scanner.nextInt();
switch (choice)
{
case 1:
System.out.println("Current balance: " + account.getBalance());
break;
case 2:
System.out.print("Enter deposit amount: ");
int depositAmount = scanner.nextInt();
account.deposit(depositAmount);
break;
case 3:
System.out.print("Enter withdrawal amount: ");
int withdrawalAmount = scanner.nextInt();
account.withdraw(withdrawalAmount);
break;
case 4:
System.out.println("Thank you for using the ATM.");
scanner.close();
System.exit(0);
default:
System.out.println("Invalid choice. Please select a valid option.");
}
}
}
}