Help with the Loop

Hi guys, i need help with the looping. where shoild i put the
1
2
cout<<"\nWould you like to have another transaction? [y/n]";
cout<<"\nEnter your choice:";

in order for the program to ask the user the y/n question everytime the user finishes a command (e.g checking balance, deposit money, withdraw money)

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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
#include <iostream.h>
#include <string.h>
#include <conio.h>

void showMenu ();
int main ()
{
	char name[100],account_type,choice,mainchoice,depchoice,withchoice;
	int mainMenu, depositMenu,cBalance,sBalance,a,b=0,c=0;
	double myDollar, balance,deposit,withdraw;

	clrscr();
	cout<<"Enter your name:";
	cin>>name;
	cout<<"\nHello "<<name<<"! Welcome to BPSU Online Banking System.";
	cout<<"\nThank you for creating an account with us. To better serve you, please provide us the following information.";
	cout<<"\n\nAccount Type:";
	cout<<"\n[S]avings";
	cout<<"\n[C]hecking";
	cout<<"\nEnter your choice:";
	do
	{
		cin>>account_type;

		if (account_type == 'S' || account_type =='s')
		{
			b = b++;
			cout<<"\nThank you for choosing a savings account.";
			cout<<"\nPlease input your initial balance:";
			do
			{
				cin>>balance;
				if (balance >= 5000)
				{

					a=a++;
					cout<<"\nThank you for opening an account with us!";
					break;
				}
				else
				{

					a=a--;
					cout<<"\nYou have entered a balance that is below the minimum";
					cout<<" initial balance for a savings account. Please input an amount";
					cout<<" greater than or equal to 5000!";
					cout<<"\nPlease input your initial balance:";

				}

			}while (a !=1);
		}
		else if (account_type == 'c' || account_type == 'C')
		{
			b = b++;
			cout<<"\nThank you for choosing a checking account.";
			cout<<"\nPlease input your initial balance:";
			do
			{
				cin>>balance;
				if (balance >= 10000)
				{

					a=a++;
					cout<<"\nThank you for opening an account with us!";
					break;
				}
				else
				{

					a=a--;
					cout<<"\nYou have entered a balance that is below the minimum";
					cout<<" initial balance for a savings account. Please input an amount";
					cout<<" greater than or equal to 10000!";
					cout<<"\nPlease input your initial balance:";
				}
			}while (a !=1);
		}
		else
		{
			b=b++;
			cout<<"Invalid entry. Try again \n\n";
			cout<<"Enter your choice:";
			cout<<"\n[S]avings";
			cout<<"\n[C]hecking";
		}
	}while(b!=1);

	cout<<"\nWould you like to have another transaction? [y/n]";
	cout<<"\nEnter your choice:";
	do
	{
		cin>>choice;

		if(choice == 'Y' || choice == 'y')
		{

			c=c++;
			clrscr();
			cout<<"BPSU Online Banking System Main Menu";
			cout<<"\n\n[B]alance Inquiry";
			cout<<"\n[D]eposit";
			cout<<"\n[W]ithdraw";
			cout<<"\n[E]xit";
			cout<<"\nEnter your choice:";
			do
			{
				cin>>mainchoice;
				if (mainchoice == 'b' || mainchoice == 'B')
				{
					a=a++;
					c=c--;
					clrscr();
					cout<<"Balance Inquiry";
					if(account_type == 'c' || account_type == 'C')
					{
					cout<<"\n\nAccount Type:Checking Account";
					}
					else if(account_type == 'S' || account_type == 's')
					{
					cout<<"\n\nAccount Type:Savings Account";
					}
				cout<<"\nCurrent Balance:"<<balance<<"";
				break;
				}

				else if(mainchoice == 'D' || mainchoice == 'd')
				{
				    a=a++;
					clrscr();
					cout<<"Deposit an Amount";
					cout<<"\nPlease choose how much you want to deposit:";
					cout<<"\n[5]00";
					cout<<"\n[1]000";
					cout<<"\n[2]000";
					cout<<"\n[50]000";
					cout<<"\nEnter your choice:";
					do
					{
					cin>>depchoice;
						if(depchoice == '5')
						{
						b=b++;
						balance = balance + 500;
						cout<<"\nThank you for updating your account!";
						break;
						}
						
						else if(depchoice == '1')
						{
						b=b++;
						c=c--;
						balance = balance + 1000;
						cout<<"\nThank you for updating your account!";
						break;
						}

						else if(depchoice == '2')
						{
						b=b++;
						balance = balance + 2000;
						cout<<"\nThank you for updating your account!";
						break;
						}

						else if(depchoice == '50')
						{
						b=b++;
						balance = balance + 5000;
						cout<<"\nThank you for updating your account!";
						break;
						}

						else if(depchoice == 'o' || depchoice == 'O')
						{
						b=b++;
						cin>>deposit;
						balance = balance + deposit;
						cout<<"\nThank you for updating your account!";
						break;
						}
					
					cout<<"\nWould you like to have another transaction? [y/n]";
					cout<<"\nEnter your choice:";
					}while(b!=1);
				
				}

				else if(mainchoice == 'W' || mainchoice == 'w')
				{
				a=a++;
				cout<<"Withdraw an amount";
				cout<<"\nPlease choose how much you want to withdraw:";
				cout<<"\n[5]00";
				cout<<"\n[1]000";
				cout<<"\n[2]000";
				cout<<"\n[50]000";
				cout<<"\n[O]ther";
				cout<<"\nEnter your choice:";
				do
				{
						cin>>withchoice;
						if(withchoice == '5')
						{
						b=b++;
						balance = balance - 500;
						cout<<"\nThank you for updating your account!";
						break;
						}
						
						else if(withchoice == '1')
						{
						b=b++;
						balance = balance - 1000;
						cout<<"\nThank you for updating your account!";
						break;
						}
						
						else if(withchoice == '2')
						{
						b=b++;
						balance = balance - 2000;
						cout<<"\nThank you for updating your account!";
						break;
						}
						
						else if(withchoice == '50')
						{
						b=b++;
						balance = balance - 5000;						
						cout<<"\nThank you for updating your account!";
						break;
						}
						
						else if(withchoice == 'o' || withchoice == 'O')
						{
						b=b++;
						cin>>withdraw;
						do
						{
							if(withdraw < balance)
							{
							c=c++;
							balance = balance - withdraw;
							cout<<"\nThank you for updating your account!";
							break;
							}
							
							else
							{
							c=c--;
							cout<<"\nYour choice is invalid!";
							cout<<"\nPlease try again:";
							break;
							}
						}while(c!=1);
						
						}
				
				}while(b!=1);
			
				}

			}while(a != 1);
			break;
			clrscr();
			cout<<"BPSU Online Banking System Main Menu";
			cout<<"\n\n[B]alance Inquiry";
			cout<<"\n[D]eposit";
			cout<<"\n[W]ithdraw";
			cout<<"\n[E]xit";
			cout<<"\nEnter your choice:";
			
		
		}
		else if(choice == 'n' || choice == 'N')
		{
		c=c++;
		cout<<"\nThank you for banking with us!";
		}
	
	}while(c != 1);
	
	getch();
	return 0;
}
closed account (48T7M4Gy)
Surely after writing all that code and all the help IdeasMan has given you on other threads you can find the spot for the 2 code lines. Where did you find them as a matter of interest?
Last edited on
Topic archived. No new replies allowed.