Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

image text in transcribed

image text in transcribed

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 #include 9#include 1#include 11 int main(void) 12 13 const int CANDIDATE NUMBER -5; // Max number of candidates for this program is 5 14 char lastName [CANDIDATE-NUMBER] [60]; //Max number of characters for the program is 68. This array determines the exact candidate specified (.e lastName[)) 15 int i; // i will be used to iterate throughout the array 16 int votes[4] 17 18 19 printf ("Enter candidate' s name and the votes received by the candidate.n") 20 21 for (i = 0; i = break; 28 printf ("Candidate Votes Recieved % of Total Votesin--.n) 29 30 31 32 34 36 return 37

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Focus On Geodatabases In ArcGIS Pro

Authors: David W. Allen

1st Edition

1589484452, 978-1589484450

More Books

Students also viewed these Databases questions

Question

3. Outline the four major approaches to informative speeches

Answered: 1 week ago

Question

4. Employ strategies to make your audience hungry for information

Answered: 1 week ago