-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOnline Quiz Platform.java
More file actions
76 lines (66 loc) · 2.59 KB
/
Online Quiz Platform.java
File metadata and controls
76 lines (66 loc) · 2.59 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
import java.util.Scanner;
public class Main {
// Variable to hold the account balance
private static double balance = 0;
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
boolean exit = false;
System.out.println("Welcome to the Simple Banking Application!");
// Main menu loop
while (!exit) {
System.out.println("\nMenu:");
System.out.println("1. Check Balance");
System.out.println("2. Deposit");
System.out.println("3. Withdraw");
System.out.println("4. Exit");
System.out.print("Choose an option (1-4): ");
int choice = scanner.nextInt();
switch (choice) {
case 1:
checkBalance();
break;
case 2:
deposit(scanner);
break;
case 3:
withdraw(scanner);
break;
case 4:
System.out.println("Thank you for using the Simple Banking Application. Goodbye!");
exit = true;
break;
default:
System.out.println("Invalid choice. Please try again.");
}
}
scanner.close();
}
// Method to check the account balance
private static void checkBalance() {
System.out.printf("Your current balance is: %.2f%n", balance);
}
// Method to deposit money into the account
private static void deposit(Scanner scanner) {
System.out.print("Enter the amount to deposit: ");
double amount = scanner.nextDouble();
if (amount > 0) {
balance += amount;
System.out.printf("Successfully deposited %.2f. Your new balance is %.2f.%n", amount, balance);
} else {
System.out.println("Invalid deposit amount. Please enter a positive value.");
}
}
// Method to withdraw money from the account
private static void withdraw(Scanner scanner) {
System.out.print("Enter the amount to withdraw: ");
double amount = scanner.nextDouble();
if (amount > 0 && amount <= balance) {
balance -= amount;
System.out.printf("Successfully withdrew %.2f. Your new balance is %.2f.%n", amount, balance);
} else if (amount > balance) {
System.out.println("Insufficient funds. Withdrawal failed.");
} else {
System.out.println("Invalid withdrawal amount. Please enter a positive value.");
}
}
}