-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSource.cpp
More file actions
53 lines (42 loc) · 866 Bytes
/
Copy pathSource.cpp
File metadata and controls
53 lines (42 loc) · 866 Bytes
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
#include <iostream>
using namespace std;
void menu() {
cout << "**********MENU**********" << endl;
cout << "1.Check balance" << endl;
cout << "2.Deposit cash" << endl;
cout << "3.Withdraw cash" << endl;
cout << "4.Exit" << endl;
cout << "********************" << endl;
}
int main() {
int option;
double balance = 750;
do {
menu();
cout << "Option:";
cin >> option;
switch (option) {
case 1:
cout << "Balance : " << "$" << balance << endl;
break;
case 2:
double deposit;
cout << "Enter deposit amount: ";
cin >> deposit;
balance += deposit;
break;
case 3:
double withdrawal;
cout << "Enter withdrawal amount: ";
cin >> withdrawal;
if (withdrawal > balance)
cout << "Not enough money!!!";
else
{
balance -= withdrawal;
}
break;
};
} while (option != 4);
//system("pause>0");
}