-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCode
More file actions
72 lines (60 loc) · 2.33 KB
/
Copy pathCode
File metadata and controls
72 lines (60 loc) · 2.33 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 SimpleBankingApplication {
private static double balance = 0;
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.println("Welcome to Mariam's Bank!");
while (true) {
System.out.println("\nChoose an option:");
System.out.println("Type 1 To Deposit");
System.out.println("Type 2 To Withdraw");
System.out.println("Type 3 To Check Balance");
System.out.println("Type 4 To Exit");
int choice = scanner.nextInt();
switch (choice) {
case 1:
deposit();
break;
case 2:
withdraw();
break;
case 3:
checkBalance();
break;
case 4:
System.out.println("Thank you for using Simple Banking Application. Goodbye!");
scanner.close();
System.exit(0);
default:
System.out.println("Invalid choice. Please choose a valid option.");
}
}
}
private static void deposit() {
Scanner scanner = new Scanner(System.in);
System.out.print("Enter the amount to deposit: $");
double amount = scanner.nextDouble();
if (amount > 0) {
balance += amount;
System.out.println("Deposit successful. New balance: $" + balance);
} else {
System.out.println("Invalid amount. Please enter a positive value.");
}
}
private static void withdraw() {
Scanner scanner = new Scanner(System.in);
System.out.print("Enter the amount to withdraw: $");
double amount = scanner.nextDouble();
if (amount > 0 && amount <= balance) {
balance -= amount;
System.out.println("Withdrawal successful. New balance: $" + balance);
} else if (amount > balance) {
System.out.println("Insufficient bank balance. Your balance is $" + balance);
} else {
System.out.println("Invalid amount. Please enter a positive value.");
}
}
private static void checkBalance() {
System.out.println("Your current balance: $" + balance);
}
}