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
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 candidates 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.
This is my code and it is working perfectly, so i just want to re do it with using the dynamic arrays, please make sure by using the dynamic arrays and plaese write the program description with it
#include #include #include using namespace std;
int main() { string names[5]; int votes[5], total = 0, max = 0; cout << fixed << setprecision(2); cout << "Enter candidate's name and the votes received by the candidate: "; for (int i = 0; i < 5; i++) { cin >> names[i] >> votes[i]; total += votes[i]; if (votes[i] > votes[max]) max = i; } cout << " Candidate" << setw(26) << "Votes Received " << setw(20) << "% of total votes "; for (int i = 0; i < 5; i++) { cout << names[i] << setw(30 - names[i].size()) << votes[i] << setw(15) << 100 * (double)votes[i] / (double)total << " "; } cout << "Total =" << setw(23) << total << " "; cout << "The winner of the Election is " << names[max] << " ";
system(" pause "); }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
