How will I loop this without losing the values of the variables?

I am a beginner when it comes to c++ programming please bear with me.

I know that returning to main() is not a good idea and if anyone of you know how will I loop the program to go back to the position selection when the voter is done voting for the last position.

when I run the program it seems fine. getting the votes from President to PRO Position is fine. The problem is how will the next voter vote without losing the vote (tally) of the previous voter?

FLOW:
SELECT POSITION (a-e) ---> SELECT A CANDIDATE (a-c) ---> (this goes on until the position of PRO) ---> ( then go back to the POSITION SELECTION)

*note: after every vote there is a case statement for which I can choose to vote for the next position, quit, or show results (and after showing the results it will go to the next position to vote).

Sorry for my bad english.
Thanks

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
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
#include<iostream>
#include<string>
#include <conio.h>
using namespace std;
int pca=0,pcb=0,pcc=0,ptv=0;
int main();
int Sec();
int Vice();
int President();
int Pro();
void loop()
{
	main();
}


int main(void)
{
main:
char pos;
system("cls");
cout<<"\t\t\t ACES Election System\n\n";
cout<<"\n\t\t\t What position do you want to start? ";
cout<<"\n\t\t\t<a>. President";
cout<<"\n\t\t\t<b>. Vice President";
cout<<"\n\t\t\t<c>. Secretary";
cout<<"\n\t\t\t<d>. PRO";
cout<<"\n\t\t\t<e>. Treasurer\n";
cout<<"\n\t\t\tChoose from a-e: ";
cin>>pos;
switch(pos)
{	
	case 'A':
	case 'a':
		system("cls"); 
		President() ; 
		 ;
		break;
	case 'B':
	case 'b':
		system("cls");
		Vice();
		break;
	case 'C':
	case 'c':
		system("cls");
		Sec();
		break;
	case 'D':
	case 'd':
		system("cls");
		Pro();
		break;
}
system("cls");
getch();
return 0;
}

int Pro()
	{
	pres:
	char choice,choice2;
	int pca=0,pcb=0,pcc=0,ptv=0;
	string sa="Antonio Santos",sb="Wainwright Rubia",sc="Joel Aguirre";
	
	{
	cout<<"\t\t\t ACES Election System\n\n";
	cout<<"\t\t\tCandidates: \n\n";
	cout<<"\t\t\t<A>Antonio Santos \n";
	cout<<"\t\t\t<B>Wainwright Rubia \n";
	cout<<"\t\t\t<C>Joel Aguirre \n\n";
	cout<<"\t\t\tEnter your vote : ";
	cin>>choice;
	switch(choice)
	{
	case 'A':
	case 'a':
		pca++;
		
		break;
	case 'B':
	case 'b':
		pcb++;
		
		break;
	case 'C':
	case 'c':
		pcc++;
		
		break;
	case 'D':
	case 'd':
		main();
		break;

	}	
	loop:
	system("cls");
	cout<<"\t\t\t-----------------------\n";
	cout<<"\t\t\t<v> vote, <r> result and <q> quit : ";
	cin>>choice2;
	system("cls");
	}
	
	if(choice2=='V' || choice2=='v')
	main();
	if (choice2=='R' || choice2=='r')
	{
	system("cls");
		cout<<"\t\t\t ACES Election System\n\n";
	cout<<"\t\t\tCandidates:"<<"\t results:"<<"\n\n";
	cout<<"\t\t\t<A>Antonio Santos : "<<pca<<"\n";
	cout<<"\t\t\t<B>Wainwright Rubia : "<<pcb<<"\n";
	cout<<"\t\t\t<C>Joel Aguirre : "<<pcc<<"\n\n";
	ptv=pca+pcb+pcc;
	cout<<"\t\t\tTotal Number of Votes : "<<ptv<<"\n";
	{
		 if (pca > pcb && pca >pcc)
    {
        cout<< "\t\t\tThe leading candidate is : Antonio Santos" << endl;
    }
    else if (pcb > pca && pcb > pcc)
    {
        cout << "\t\t\tThe leading candidate is : Wainwright Rubia" << endl;
    }
    else
        cout << "\t\t\tThe leading candidate is : Joel Aguirre" << endl;
	}
	getch();
	system("cls");
	Vice();
	return 0;
	

}
	main();
}

int Sec()
	//SECRETARY POS. SECTION
	{
pres:
	char choice,choice2;
	int sca=0,scb=0,scc=0,stv=0;
	string sa="Antonio Santos",sb="Wainwright Rubia",sc="Joel Aguirre";
	
	{
	cout<<"\t\t\t ACES Election System\n\n";
	cout<<"\t\t\tCandidates: \n\n";
	cout<<"\t\t\t<A>SecA \n";
	cout<<"\t\t\t<B>SecB \n";
	cout<<"\t\t\t<C>SecC \n\n";
	cout<<"\t\t\tEnter your vote : ";
	cin>>choice;
	switch(choice)
	{
	case 'A':
	case 'a':
		sca++;
		Pro();
		break;
	case 'B':
	case 'b':
		scb++;
		Pro();
		break;
	case 'C':
	case 'c':
		scc++;
		Pro();
		break;
	case 'D':
	case 'd':
		Pro();
		break;
	}	
	loop:
	system("cls");
	cout<<"\t\t\t-----------------------\n";
	cout<<"\t\t\t<r> result and <q> quit : ";
	cin>>choice2;
	system("cls");

	}
	
	if(choice2=='V' || choice2=='v')
	loop();
	getch();
	if (choice2=='Q' || choice2=='q')
		getch();
	if (choice2=='R' || choice2=='r')
	{
	system("cls");
		cout<<"\t\t\t ACES Election System\n\n";
	cout<<"\t\t\tCandidates:"<<"\t results:"<<"\n\n";
	cout<<"\t\t\t<A>SecA : "<<sca<<"\n";
	cout<<"\t\t\t<B>SecB : "<<scb<<"\n";
	cout<<"\t\t\t<C>SecC : "<<scc<<"\n\n";
	stv=sca+scb+scc;
	cout<<"\t\t\tTotal Number of Votes : "<<stv<<"\n";
	{
		 if (sca > scb && sca > scc)
    {
        cout<< "\t\t\tThe leading candidate is : SecA" << endl;
    }
    else if (scb > sca && scb > scc)
    {
        cout << "\t\t\tThe leading candidate is : SecB" << endl;
    }
    else
        cout << "\t\t\tThe leading candidate is : SecC" << endl;
	}
	getch();
	system("cls");
}
return 0;
}

int Vice()
//VICE PRESIDENT POS. SECTION
{
pres:
	char choice,choice2;
	int vca=0,vcb=0,vcc=0,vtv=0;
	string sa="Antonio Santos",sb="Wainwright Rubia",sc="Joel Aguirre";
	
	{
	
	cout<<"\t\t\t ACES Election System\n\n";
	cout<<"\t\t\tCandidates: \n\n";
	cout<<"\t\t\t<A>ViceA \n";
	cout<<"\t\t\t<B>ViceB \n";
	cout<<"\t\t\t<C>ViceC \n\n";
	cout<<"\t\t\tEnter your vote : ";
	cin>>choice;
	switch(choice)
	{
	case 'A':
	case 'a':
		vca++;
		
		break;
	case 'B':
	case 'b':
		vcb++;
		
		break;
	case 'C':
	case 'c':
		vcc++;
		
		break;
	case 'D':
	case 'd':
		Sec();
		break;
	}	
	loop:
	system("cls");
	cout<<"\t\t\t-----------------------\n";
	cout<<"\t\t\tEnter <v>vote <r> result and <q> quit : ";
	cin>>choice2;
	system("cls");
	}
	
	if(choice2=='V' || choice2=='v')
	Sec();
	if (choice2=='Q' || choice2=='q')
		getch();
	if (choice2=='R' || choice2=='r')
	{
	system("cls");
	cout<<"\t\t\t ACES Election System\n\n";
	cout<<"\t\t\tCandidates:"<<"\t results:"<<"\n\n";
	cout<<"\t\t\t<A>ViceA : "<<vca<<"\n";
	cout<<"\t\t\t<B>ViceB : "<<vcb<<"\n";
	cout<<"\t\t\t<C>ViceC : "<<vcc<<"\n\n";
	vtv=vca+vcb+vcc;
	cout<<"\t\t\tTotal Number of Votes : "<<vtv<<"\n";
	{
		 if (vca > vcb && vca > vcc)
    {
        cout<< "\t\t\tThe leading candidate is : ViceA" << endl;
    }
    else if (vcb > vca && vcb > vcc)
    {
        cout << "\t\t\tThe leading candidate is : ViceB" << endl;
    }
    else
        cout << "\t\t\tThe leading candidate is : ViceC" << endl;
	}
	getch();
	system("cls");
	Sec();
	return 0;
}
}

int President()
	//PRESIDENT POS. SECTION
{
	pres:
	char choice,choice2;
	int ca=0,cb=0,cc=0,tv=0;
	string sa="Antonio Santos",sb="Wainwright Rubia",sc="Joel Aguirre";
	
	{
	cout<<"\t\t\t ACES Election System\n\n";
	cout<<"\t\t\tCandidates: \n\n";
	cout<<"\t\t\t<A>Antonio Santos \n";
	cout<<"\t\t\t<B>Wainwright Rubia \n";
	cout<<"\t\t\t<C>Joel Aguirre \n\n";
	cout<<"\t\t\tEnter your vote : ";
	cin>>choice;
	switch(choice)
	{
	case 'A':
	case 'a':
		ca++;
		
		break;
	case 'B':
	case 'b':
		cb++;
		
		break;
	case 'C':
	case 'c':
		cc++;
		
		break;
	case 'D':
	case 'd':
		Vice();
		break;

	}	
	loop:
	system("cls");
	cout<<"\t\t\t-----------------------\n";
	cout<<"\t\t\t<v> vote, <r> result and <q> quit : ";
	cin>>choice2;
	system("cls");
	}
	
	if(choice2=='V' || choice2=='v')
	Vice();
	if (choice2=='R' || choice2=='r')
	{
	system("cls");
		cout<<"\t\t\t ACES Election System\n\n";
	cout<<"\t\t\tCandidates:"<<"\t results:"<<"\n\n";
	cout<<"\t\t\t<A>Antonio Santos : "<<ca<<"\n";
	cout<<"\t\t\t<B>Wainwright Rubia : "<<cb<<"\n";
	cout<<"\t\t\t<C>Joel Aguirre : "<<cc<<"\n\n";
	tv=ca+cb+cc;
	cout<<"\t\t\tTotal Number of Votes : "<<tv<<"\n";
	{
		 if (ca > cb && ca > cc)
    {
        cout<< "\t\t\tThe leading candidate is : Antonio Santos" << endl;
    }
    else if (cb > ca && cb > cc)
    {
        cout << "\t\t\tThe leading candidate is : Wainwright Rubia" << endl;
    }
    else
        cout << "\t\t\tThe leading candidate is : Joel Aguirre" << endl;
	}
	getch();
	system("cls");
	Vice();
	return 0;
	

}
}

For loops, look at "control structures":
http://www.cplusplus.com/doc/tutorial/control/

You'll find useful loops such as the while and do-while loop.

Also, attempt to avoid <conio.h> and direct calls to system().
The <conio.h> header is deprecated, meaning it is no longer part of the standard, so anything from there is implementation defined and may not work as you expect.
For why not to call system, it creates an annoying security issue. Here is an article about it: http://www.cplusplus.com/articles/j3wTURfi/
Topic archived. No new replies allowed.