Question: Task 4 : Write a program Election that computes the tally in a write - in election, and announces the winner. Since the votes are
Task : Write a program Election that computes the tally in a writein election, and
announces the winner. Since the votes are writein there is no predetermined set of
candidates. Whoever appears the most in the votes is the winner. The user enters the
individual votes, one vote per line, and ends entering with typing or an empty line. To
Page of
compute the tally, the program uses two arrays, a String variable names and an int
variable count Upon receiving a single vote, the program checks if the name on the
vote appears in names, and if it does, the program adds to the value of the element in
count. If the name does not appear in names, the program extends both arrays by one
element, stores the name in names at the last position and store in count at the last
position. In this manner, the two arrays will have the same lengths. The initial length is
for both arrays.
Hint: You can use either Array or ArrayList.
Below is an example of how the program may run:
Enter the votes, one vote per line.
End with either or an empty line.
Sam
Peter
James
Sam
Sam
Peter
sam
Sam recieved votes
Peter recieved votes
James recieved votes
The Winner is Sam with votes
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
