-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBankingApplication.java
More file actions
88 lines (75 loc) · 2.79 KB
/
BankingApplication.java
File metadata and controls
88 lines (75 loc) · 2.79 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
import java.util.Scanner;
class BankAccount {
private String accountHolder;
private double balance;
// Constructor
public BankAccount(String accountHolder, double initialBalance) {
this.accountHolder = accountHolder;
this.balance = initialBalance;
}
// Deposit money
public void deposit(double amount) {
if (amount > 0) {
balance += amount;
System.out.println("Successfully deposited: ₹" + amount);
} else {
System.out.println("Deposit amount must be greater than zero!");
}
}
// Withdraw money
public void withdraw(double amount) {
if (amount > 0 && amount <= balance) {
balance -= amount;
System.out.println("Successfully withdrawn: ₹" + amount);
} else if (amount > balance) {
System.out.println("Insufficient funds! Current balance: ₹" + balance);
} else {
System.out.println("Withdrawal amount must be greater than zero!");
}
}
// Check balance
public void checkBalance() {
System.out.println("Current Balance: ₹" + balance);
}
public String getAccountHolder() {
return accountHolder;
}
}
public class BankingApplication {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.print("Enter Account Holder Name: ");
String name = sc.nextLine();
System.out.print("Enter Initial Balance: ₹");
double initialBalance = sc.nextDouble();
BankAccount account = new BankAccount(name, initialBalance);
while (true) {
System.out.println("\n=== Banking System ===");
System.out.println("1. Deposit");
System.out.println("2. Withdraw");
System.out.println("3. Check Balance");
System.out.println("4. Exit");
System.out.print("Choose an option: ");
int choice = sc.nextInt();
switch (choice) {
case 1 -> {
System.out.print("Enter deposit amount: ₹");
double depositAmount = sc.nextDouble();
account.deposit(depositAmount);
}
case 2 -> {
System.out.print("Enter withdrawal amount: ₹");
double withdrawAmount = sc.nextDouble();
account.withdraw(withdrawAmount);
}
case 3 -> account.checkBalance();
case 4 -> {
System.out.println("Exiting... Goodbye " + account.getAccountHolder() + "!");
sc.close();
System.exit(0);
}
default -> System.out.println("Invalid option! Try again.");
}
}
}
}