-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbankApp.java
More file actions
96 lines (82 loc) · 2.99 KB
/
Copy pathbankApp.java
File metadata and controls
96 lines (82 loc) · 2.99 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
96
import java.util.Scanner;
class BankAccount {
String accountHolder;
int accountNumber;
double balance;
BankAccount(String name, int accNumber) {
accountHolder = name;
accountNumber = accNumber;
balance = 0.0;
}
void deposit(double amount) {
if (amount > 0) {
balance += amount;
System.out.println("Deposited ₹" + amount + " successfully.");
} else {
System.out.println("Invalid amount.");
}
}
void withdraw(double amount) {
if (amount > 0 && amount <= balance) {
balance -= amount;
System.out.println("Withdrew ₹" + amount + " successfully.");
} else {
System.out.println("Insufficient balance or invalid amount.");
}
}
void checkBalance() {
System.out.println("Current balance: ₹" + balance);
}
void accountDetails() {
System.out.println("Account Holder: " + accountHolder);
System.out.println("Account Number: " + accountNumber);
}
}
public class BankApp {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
BankAccount user = null;
System.out.println("---- Welcome to Java Bank ----");
System.out.print("Enter your name to create an account: ");
String name = sc.nextLine();
int accNum = (int)(Math.random() * 9000) + 1000;
user = new BankAccount(name, accNum);
System.out.println("Account created successfully!");
user.accountDetails();
int choice;
do {
System.out.println("\n=== Banking Menu ===");
System.out.println("1. Deposit");
System.out.println("2. Withdraw");
System.out.println("3. Check Balance");
System.out.println("4. Account Details");
System.out.println("5. Exit");
System.out.print("Choose an option: ");
choice = sc.nextInt();
switch (choice) {
case 1:
System.out.print("Enter deposit amount: ₹");
double depositAmt = sc.nextDouble();
user.deposit(depositAmt);
break;
case 2:
System.out.print("Enter withdrawal amount: ₹");
double withdrawAmt = sc.nextDouble();
user.withdraw(withdrawAmt);
break;
case 3:
user.checkBalance();
break;
case 4:
user.accountDetails();
break;
case 5:
System.out.println("Thank you for using Java Bank!");
break;
default:
System.out.println("Invalid option. Try again.");
}
} while (choice != 5);
sc.close();
}
}