Write a program that allows the user to enter the last names of five candidates
ID: 3624593 • Letter: W
Question
Write a program that allows the user to enter the last names of five candidates in a local election and the number of votes received by each candidate. The program should then output each candidate’s name, the number of votes received, 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.73
Duffy 6000 31.09
Robinson 2500 12.95
Ashtony 1800 9.33
Total 19300
The Winner of the Election is Duffy.
Using dynamic arrays, you must ask the user for the number of candidates and then create the appropriate arrays to hold the data.
Explanation / Answer
#include #include using namespace std; #define N 5 char name[N][15]; int votes[N]; float percentage[N]; int total; int winner; int winVotes; void get_input() { int i; total = 0; for (i=0;iRelated Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.