-
Notifications
You must be signed in to change notification settings - Fork 0
/
ATM.cpp
60 lines (49 loc) · 1.19 KB
/
ATM.cpp
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
#include<iostream>
using namespace std;
void showMenu()
{
cout<<"*******MENU********"<<endl;
cout<<"1.Check Balance"<<endl;
cout<<"2.Deposit"<<endl;
cout<<"3.Withdraw"<<endl;
cout<<"4.Exit"<<endl;
cout<<"*******************"<<endl;
}
int main()
{
//check balance,deposit,withdraw,show menu
int option;
double balance=5000;
do{
showMenu();
cout<<"Option: ";
cin>>option;
system("cls");
switch(option)
{
// It will show the balance
case 1:
cout<<"Balance is: "<<balance<<"$"<<endl;
break;
// It will be used to deposit money
case 2:
cout<<"Deposit amount: ";
double depositAmount;
cin>>depositAmount;
balance+=depositAmount;
break;
//It will be used to withdraw money from ATM
case 3:
cout<<"Withdraw amount: ";
double withdrawAmount;
cin>>withdrawAmount;
if(withdrawAmount<=balance)
balance-=withdrawAmount;
else
cout<<"Not enough Money"<<endl;
break;
}
}
while(option!=4);
system("pause>0");
}