Question:
Write a C++ 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. A sample output is :
Candidate |
Votes Received |
% of Total Votes |
Johnson |
5000 |
25.91 |
Miller |
4000 |
20.72 |
Duffy |
6000 |
31.09 |
Robinson |
2500 |
12.95 |
Anthony |
1800 |
9.33 |
Total |
19300 |
|
Then outputs: The Winner of the Election is Duffy..
Extra Instructions: First design a Vote structure to hold candidate, votes received and percentage of total votes. Then use a STL list of Vote structure to implement the program.
Whenever possible, you should use STL functions and/or iterators to accomplish the necessary operations.
Otherwise, you can not get credit for your implementation. Design the program top-down, with only function calls in main, and function calls within functions.