-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathacroBank.cpp
111 lines (99 loc) · 2.32 KB
/
acroBank.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
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
#include<conio.h>
#include<stdio.h>
#include<iostream>
using namespace std;
class bank
{
char name[100],add[100],y;
int balance, amount;
public:
void open_account ();
void deposite_money();
void withdraw_money ();
void display_account();
};
void bank::open_account()
{
system("cls");
cout<<"Enter your full name ::";
cin.ignore();
cin.getline(name,100);
cout<<"Enter your addess ::";
cin.ignore();
cin.getline(add,100);
cout<<"what type of account you want to open saving (s) or current (c)";
cin>>y;
cout<<"Enter amount for deposite ::";
cin>>balance;
cout<<"Your account is created ";
}
void bank::deposite_money()
{
int a ;
cout<<"Enter how much money you want to deposit::";
cin>>a;
balance+=a;
cout<<"Your total deposit amount\n";
}
void bank::display_account()
{
cout<<"Enter the name ::"<<name<<endl;
cout<<"Enterened your addees ::"<<add<<endl;
cout<<"Type of account that you open ::"<<y<<endl;
cout<<"Amount you deposite ::"<<balance<<endl;
}
void bank::withdraw_money()
{
cout<<"withdeaw ::";
cout<<"Enter your amount for withdrawing ";
cin>>amount;
balance=balance-amount;
cout<<"Now your total amount is left ::"<<balance;
}
int main()
{
int ch,x,n;
bank obj;
system("cls");
system("color 0A");
do
{
cout<<"01)Open account \n";
cout<<"02)Deposit money \n";
cout<<"03)WithDraw money \n";
cout<<"04)Display account\n";
cout<<"05)Exit\n";
cout<<"Please sir, select the option from above ";
cin>>ch;
switch(ch)
{
case 1:"01)Open account \n";
obj.open_account ();
break;
case 2:"02)Deposit money \n";
obj.deposite_money();
break;
case 3:"03)WithDraw money \n";
obj.withdraw_money ();
break;
case 4:"04)Display account\n";
obj.display_account();
break;
case 5:
if(ch==5)
{
cout<< "exit";
}
default:
cout<<"This is not exit please try again ";
}
cout<<"\n do you want to select next step then please press::y\n";
cout<<"if you want to exit then please press:: N ";
x=getch();
if(x=='n' || x=='N')
cout<<"exit";
}
while (x=='y' || x=='Y');
getch();
return 0;
}