Question
I need to have two arrays to run the program; one for getting the names of the candidates and another to get the votes. My
I need to have two arrays to run the program; one for getting the names of the candidates and another to get the votes. My problem is I have used fgets in order to get my string of characters from user input, but how do I take the name and the number of votes provided in the string and put them into separate arrays? Right now with my program if the user were to input "Miller 3000" it would store the entire string into "lastName[CANDIDATE_NUMBER]", but I want to have it so that only Miller would get stored in "lastName[CANDIDATE_NUMBER]" and the number of votes, 3000, would get stored into my "votes" array.
NOTE: The images can be enlarged and viewed more easily if you right click and select "Open image in new tab"
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 in two arrays 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. For example Enter candidate's name and the votes received by the candidate. Johnson 5000 Miller 4000 Duffy 6000 Robinson 2500 Asthony 1800 Candidate tes Received % of Total Votes Johnson Miller Duffy Robinson Asthony 5000 4000 6000 2500 1800 25.91 20.73 31.09 12.95 9.33 Total Votes: 19300 The Winner of the Election is: Duffy 8 #includeStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started