自己写的投票系统,小甲鱼老师的课后习题。吧友们来翻炒翻炒
#include <stdio.h>#include <string.h>
#define N 4 //一共有多少候选人
#define M 10 // 一共有多少人参与投票
void main()
{
printf("欢迎进入良好公民评选投票系统:<>\n\n");
printf("候选人有:小鱼, 小仓, 小松, 小莫\n\n");
int i, t, max = 0;
char x = {"0"};
struct man // 构造结构体,包括姓名和得票数
{
char name;
int count;
} man = {{"小鱼", 0}, {"小仓", 0}, {"小松", 0}, {"小莫", 0}}; // 进行赋初值
for (i = 1; i <= M; i++ ) //进行投票,并进行统计
{
printf("第%d位投票,请写下支持的候选人的名字:", i);
scanf("%s", &x);
if ( strcmp(x, man.name) == 0)
{
man.count++;
}
if ( strcmp(x, man.name) == 0)
{
man.count++;
}
if ( strcmp(x, man.name) == 0)
{
man.count++;
}
if ( strcmp(x, man.name) == 0)
{
man.count++;
}
}
printf("\n");
for( i = 0; i < N; i++ ) //每个同学的得票数
{
printf("%s同学的得票数为:%d \n", man.name, man.count);
}
printf("\n");
for ( i = 0; i < N; i++ ) //比较得票数,找到最高票获得者
{
if ( max < man.count )
{
max = man.count;
t = i;
}
}
printf("本次投票活动的获胜者是: %s", man.name);
printf("\n\n");
} 我试试了,咋运行不了
hxs111 发表于 2018-1-19 11:10
我试试了,咋运行不了
这是我运行的结果 可以运行啊
页:
[1]