There are 3 candidates, each voter can only vote for one person, and it is required to compile a program to count votes, enter the names of the candidates, and finally output the results of each person's votes
#include "stdafx.h" #include "string.h" struct Person {char name[20]; int count; }leader[3]={"Li",0,"Zhang",0,"Sun",0};
int main(int argc, char* argv[]) {int i,j; char leader_name[20]; for(i=1; i<=10; i++) {scanf("%s",leader_name); for(j=0; j<3; j++) if(strcmp(leader_name,leader[j].name==0)leader[j].count++; )
} printf("\nResult:\n"); for(i=0; i<3; i++) printf("%5s:d\n",leader[i],name_leader[i].count); return 0;
}
|