-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMain.java
More file actions
96 lines (79 loc) · 2.02 KB
/
Main.java
File metadata and controls
96 lines (79 loc) · 2.02 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;
public class Main {
static Scanner sc = new Scanner(System.in);
public static void main(String[] args) {
// Java Banking Program
// Declare Variables
double balance = 0;
boolean isRunning = true;
int choice;
while (isRunning) {
// Menu
System.out.println("***************");
System.out.println("BANKING PROGRAM");
System.out.println("***************");
System.out.println("1. Show Balance");
System.out.println("2. Deposit");
System.out.println("3. Withdraw");
System.out.println("4. Exit");
System.out.println("***************");
// GET AND PROCESS Users Choice
System.out.print("Enter Your Choice (1-4) : ");
choice = sc.nextInt();
switch (choice) {
case 1:
showBalance(balance);
break;
case 2:
balance += deposit();
break;
case 3:
balance -= withdraw(balance);
break;
case 4:
isRunning = false;
break;
default:
System.out.println("INVALID CHOICE");
}
}
System.out.println("***************************");
System.out.println("Thank you! Have a nice day!");
System.out.println("***************************");
// EXIT
sc.close();
}
// SHOW BALANCE
static void showBalance(double balance) {
System.out.println("\n*************************");
System.out.printf("Your Balance is : $%.2f", balance);
System.out.println("\n*************************\n\n");
}
// DEPOSIT
static double deposit() {
double amount;
System.out.print("Enter an amount to be deposited: ");
amount = sc.nextDouble();
if (amount < 0) {
System.out.println("Amount Can't be Negative.");
return 0;
} else {
return amount;
}
}
// WITHDRAW
static double withdraw(double balance) {
double amount;
System.out.println("Enter amount to be Withdrawn : ");
amount = sc.nextDouble();
if (amount > balance) {
System.out.println("INSUFFICIENT FUNDS");
return 0;
} else if (amount < 0) {
System.out.println("Amount Can't be Negative.");
return 0;
} else {
return amount;
}
}
}