-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbankingProgram.java
More file actions
72 lines (64 loc) · 2.31 KB
/
bankingProgram.java
File metadata and controls
72 lines (64 loc) · 2.31 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
import java.util.Scanner;
public class bankingProgram {
static Scanner scanner = new Scanner(System.in);
public static void main(String[] args) {
int choice;
Boolean isRunning = true;
double balance= 0 ;
while(isRunning){
System.out.println("""
*****************************
WELCOME TO THE BANKING SYSTEM
*****************************
1) Check Balance
2) Withdraw
3) Deposit
4) Quit
*****************************
""");
System.out.print("Enter your choice: ");
choice = scanner.nextInt();
switch(choice) {
case 1 -> showBalance(balance);
case 2 -> balance = makeWithdraw(balance);
case 3 -> balance = makeDeposit(balance);
case 4 -> isRunning = false;
default -> System.out.println("Invalid Choice!!! Try Again");
}
}
System.out.println("THANK YOU FOR BANKING WITH US!");
scanner.close();
}
static void showBalance(double balance) {
System.out.printf("Your current balance is ₹%.2f\n", balance);
}
static double makeDeposit(double balance){
System.out.print("Enter the amount for the deposit: ");
double amount = scanner.nextDouble();
if(amount<=0){
System.out.println("Enter a valid amount...");
return balance;
}else {
balance += amount;
System.out.printf("Your updated balance is ₹%.2f\n", balance);
return balance;
}
}
static double makeWithdraw(double balance){
System.out.print("Enter the amount you wish to withdraw: ₹");
double amount = scanner.nextDouble();
if(amount>balance){
System.out.println("Insufficient funds!!!");
System.out.println("Try again");
return balance;
}
else if(amount<=0){
System.out.println("Enter a valid amount...");
return balance;
}
else{
balance-=amount;
System.out.printf("Your updated balance is ₹%.2f\n", balance);
return balance;}
}
}