-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbankingprogram.java
More file actions
81 lines (67 loc) · 2.21 KB
/
bankingprogram.java
File metadata and controls
81 lines (67 loc) · 2.21 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
import java.util.Scanner;
public class bankingprogram {
static Scanner sc=new Scanner((System.in));
public static void main(String[] args){
//JAVA BANKING PROGRAM
//DECLARE VARIABLE
double balance =100;
boolean isRunning=true;
int choice;
while(isRunning) {
//DISPLAY MENU
System.out.println("***********");
System.out.println("BANKING PROGRAM: ");
System.out.println("*********");
System.out.println("Enter your choice: ");
System.out.println("*************");
//System.out.println("****************************");
//GET AND PROCESS USER CHOICE
System.out.println("1.balance");
System.out.println("2.deposit");
System.out.println("3.withdraw");
System.out.println("4.exit");
System.out.println("enter your choice between(1-4)");
choice = sc.nextInt();
switch (choice) {
case 1 -> showbalance(balance);
case 2 -> balance+=deposit();
case 3 -> balance-=withdraw();
case 4 -> {
System.out.println("thank you for banking with us");
isRunning=false;
}
default -> System.out.println("invalid ");
}
}
sc.close();
}
static void showbalance(double balance) {
System.out.printf("$%.2f\n", balance);
}
static double deposit() {
double amount;
System.out.println("enetr money to deposit");
amount = sc.nextDouble();
if (amount < 0) {
System.out.println("amount cant negative");
return 0;
} else {
return amount;
}
}
static double withdraw() {
double money;
System.out.println("enetr money to withdraw");
money = sc.nextDouble();
if (money < 0) {
System.out.println("amount cant negative");
return 0;
} else {
return money;
}
}
// exit page
static void exit() {
System.out.println("thank you for banking with us");
}
}