-
Notifications
You must be signed in to change notification settings - Fork 94
/
Copy pathVoting system.cpp
167 lines (131 loc) · 4.04 KB
/
Voting system.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
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
#include <stdio.h>
#include <stdio.h>
#include <string.h>
int bjp=0, congress=0, aap=0, bsp=0;
void electionResult()
{
int wonByVote;
if (bjp > congress && bjp > aap && bjp > bsp)
{
printf("\n***BJP won the election***\n\n");
printf("Total vote of BJP : %d\n",bjp);
wonByVote=bjp-congress;
printf("BJP won by %d votes to Congress\n",wonByVote);
wonByVote=bjp-aap;
printf("BJP won by %d votes to AAP\n",wonByVote);
wonByVote=bjp-bsp;
printf("BJP won by %d votes to BSP\n",wonByVote);
}
else if (congress > aap && congress > bsp)
{
printf("\n***Congress won the election***\n\n");
printf("Total vote of Congress : %d\n",congress);
wonByVote=congress-bjp;
printf("Congress won by %d votes to BJP\n",wonByVote);
wonByVote=congress-aap;
printf("Congress won by %d votes to AAP\n",wonByVote);
wonByVote=congress-bsp;
printf("Congress won by %d votes to BSP\n",wonByVote);
}
else if (aap > bsp)
{
printf("\n***AAP won the election***\n\n");
printf("Total vote of AAP : %d\n",aap);
wonByVote=aap-congress;
printf("AAP won by %d votes to Congress\n",wonByVote);
wonByVote=aap-bjp;
printf("AAP won by %d votes to BJP\n",wonByVote);
wonByVote=aap-bsp;
printf("AAP won by %d votes to BSP\n",wonByVote);
}
else if(bjp == congress && bjp == aap && bjp == bsp)
{
printf("\nNo one won the election\n\n");
printf(" BJP---Congress---AAP---BSP\n");
printf("Total Vote %d %d %d %d\n",bjp,congress,aap,bsp);
}
else
{
printf("\n***BSP won the election***\n\n");
printf("Total vote of BSP : %d\n",bsp);
wonByVote=bsp-congress;
printf("BSP won by %d votes to Congress\n",wonByVote);
wonByVote=bsp-aap;
printf("BSP won by %d votes to AAP\n",wonByVote);
wonByVote=bsp-bjp;
printf("BSP won by %d votes to BJP\n",wonByVote);
}
}
void calculateVote(int vote)
{
switch (vote)
{
case 1:
bjp+=1;
break;
case 2:
congress+=1;
break;
case 3:
aap+=1;
break;
case 4:
bsp+=1;
break;
}
}
int main()
{
char id[50];
User:
printf("Enter your id:\n");
scanf("%s", &id);
if (strcmp(id,"admin")==0)
{
printf("Id is correct\n");
}
else
{
printf("You have enetred an invalid user id\nPlease enter id again\n");
goto User;
}
char pass[50];
pass:
printf("Enter your password: ");
scanf("%s", &pass);
if(strcmp(pass,"admin1122")==0)
{
printf("You have successly loged in into election result\n");
}
else
{
printf("You have entered a wrong password\nEnter your password again\n");
goto pass;
}
int choose;
printf("\n*********Welcome to the simple voting system project*********\n\n");
printf(" MP election \n\n");
printf("*************************************************************\n");
printf("| 1.BJP | 2.Congress |\n");
printf("*************************************************************\n");
printf("| 3.APP | 4.BSP |\n");
printf("*************************************************************\n\n");
do
{
printf("Press 1 to vote BJP\n");
printf("Press 2 to vote Congress\n");
printf("Press 3 to vote APP\n");
printf("Press 4 to vote BSP\n");
printf("Press 5 to show election result\n");
printf("Please choose : ");
scanf("%d", &choose);
if (choose==5)
{
electionResult();
}else
{
calculateVote(choose);
}
printf("\n");
} while (choose != 5);
}