CIS 260 Computer Programming I

In Class Exercise: Election Results

 

Programming Exercise

Write the java code needed to complete the following exercise.  Hand in a printout of the source code and screen shots of the results.

Write a program that allows the user to enter the last names of five candidates in a local election and the votes received by each candidate. The program should then output each candidate's name, the votes received by that candidate, and the percentage of the total votes received by the candidate. Your program should also output the winner of the election.

Candidate    Votes Received    % of Total Votes
---------    --------------    ----------------
Johnson        5000                25.91%
Miller         4000                20.72%
Duffy          6000                31.09%
Mason          2500                12.95%
Hudson         1800                 9.33%

The Winner of the Election is Duffy.