|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
报错是这样的:执行 cl.exe 时出错.
2.exe - 1 error(s), 0 warning(s)
#include<conio.h>
#include<stdlib.h>
#include<stdio.h>
#define NUM 20
struct FOOD
{
char c;
int num;
}number[3];
struct VOTE
{
char c1;
char c2;
char c3;
}vote[NUM];
void count(char c,int n);
void menu()
int loadvote()
{
FILE *fp;
int i;
if((fp=fopen("voter.txt","r"))==NULL)
{
printf("\n 不能打开此文件 \ n");
return 0;
}
for(i=0;!feof(fp);i++)
{
fscanf(fp,"%s%s%s",&vote[i].c1,&vote[i].c2,&vote[i].c3);
}
fclose(fp);
return(i);
}
void select()
{
int m,w;
do
{
puts(" 下一个 " );
puts("\t\t^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^");
puts("\t\t{ }");
puts("\t\t{[1. 返回 ] }");
puts("\t\t{[2. 退出 ] }");
puts("\t\t{ }");
puts("\t\t^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n");
printf(" 请选择你的数字 (1-2) : [ ]\b\b");
scanf("%d",&m);
if(m<1||m>2)
{
w=1;
printf(" 错误 \ n");
select();
}
else w=0;
switch(m)
{
case 1:printf("\n\n");menu();break;
case 2:exit(0);
}
}while(w==1);
}
void innum()
{
int i=loadvote();
printf("\n 选票人数 :\t%d\n\n",i);
select();
}
void add(char c1,char c2,char c3)
{
int i;
for(i=0;i<3;i++)
{
switch(i)
{
case 0:count(c1,5);break;
case 1:count(c2,3);break;
case 2:count(c3,2);
}
}
}
void count(char c,int n)
{
switch(c)
{
case 'a':number[0].num+=n;break;
case 'b':number[1].num+=n;break;
case 'c':number[2].num+=n;
}
}
void input()
{
int i;
int m=loadvote();
printf("\n");
number[0].num=number[1].num=number[2].num=0;
for(i=0;i<m;i++)
{
printf("%c %c %c",vote[i].c1,vote[i].c2,vote[i].c3);
if(vote[i].c1==vote[i].c2||vote[i].c1==vote[i].c3||vote[i].c2==vote[i].c3)
printf("\t 该票无效 !\n");
else
{
add(vote[i].c1,vote[i].c2,vote[i].c3);
printf("\n");
}
}
printf("\n\n");
select();
}
void output()
{
int n,i;
n=loadvote();
number[0].num=number[1].num=number[2].num=0;
for(i=0;i<n;i++)
{
if(vote[i].c1==vote[i].c2||vote[i].c1==vote[i].c3||vote[i].c2==vote[i].c3);
else
{
add(vote[i].c1,vote[i].c2,vote[i].c3);
}
}
printf("\n 候选人的得分 :\t");
printf("a: %d\n",number[0].num);
printf("b: %d\n",number[1].num);
printf("c: %d\n\n\n",number[2].num);
select();
}
main()
{
void choose();
menu();
}
void menu()
{
void choose();
int n,w;
do
{ 程
puts("\t\t^^^^^^^^^^^^ 足球先生投票序 ^^^^^^^^^^^^^^^^^^");
puts("\t\t{ }");
puts("\t\t{ [1. 选票人数 : ] }");
puts("\t\t{ [2. 选票信息 :] }");
puts("\t\t{ [3. 分数 :] }");
puts("\t\t{ [4. 结果 :] }");
puts("\t\t{ [5. 退出 ] }");
puts("\t\t{ }");
puts("\t\t^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^");
printf(" 请选择你的数字 (1-5) :[ ]\b\b");
scanf("%d",&n);
if(n<1||n>5)
{
w=1;
getchar();
}
else w=0;
}while(w==1);
switch(n)
{
case 1:innum();break;
case 2:input();break;
case 3:output();break;
case 4:choose();break;
case 5:exit(0);
}
}
void choose()
{
int c;
if(number[0].num>number[1].num&&number[0].num>number[2].num)
{
c=1;
}
else if(number[1].num>number[0].num&&number[1].num>number[2].num)
{
c=2;
}
else if(number[2].num>number[1].num&&number[2].num>number[0].num)
{
c=3;
}
else
{
printf(" 重新选票 !\n");
main();
}
switch(c)
{
case 1:printf("\n 祝贺 a 当选冠军 !\n\n\n");select();
case 2:printf("\n 祝贺 b 当选冠军 !\n\n\n");select();
case 3:printf("\n 祝贺 c 当选冠军 !\n\n\n");select();
}
}
第 17 行 少了个分号 ;
第 24 行和第 51 行 \ n中间不能有空格
第134行 main函数中要么添加return;要么就加void
第140行 多了一个'程' #include<conio.h>
#include<stdlib.h>
#include<stdio.h>
#define NUM 20
struct FOOD
{
char c;
int num;
}number[3];
struct VOTE
{
char c1;
char c2;
char c3;
}vote[NUM];
void count(char c,int n);
void menu();
int loadvote()
{
FILE *fp;
int i;
if((fp=fopen("voter.txt","r"))==NULL)
{
printf("\n 不能打开此文件 \n");
return 0;
}
for(i=0;!feof(fp);i++)
{
fscanf(fp,"%s%s%s",&vote[i].c1,&vote[i].c2,&vote[i].c3);
}
fclose(fp);
return(i);
}
void select()
{
int m,w;
do
{
puts(" 下一个 " );
puts("\t\t^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^");
puts("\t\t{ }");
puts("\t\t{[1. 返回 ] }");
puts("\t\t{[2. 退出 ] }");
puts("\t\t{ }");
puts("\t\t^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n");
printf(" 请选择你的数字 (1-2) : [ ]\b\b");
scanf("%d",&m);
if(m<1||m>2)
{
w=1;
printf(" 错误 \n");
select();
}
else w=0;
switch(m)
{
case 1:printf("\n\n");menu();break;
case 2:exit(0);
}
}while(w==1);
}
void innum()
{
int i=loadvote();
printf("\n 选票人数 :\t%d\n\n",i);
select();
}
void add(char c1,char c2,char c3)
{
int i;
for(i=0;i<3;i++)
{
switch(i)
{
case 0:count(c1,5);break;
case 1:count(c2,3);break;
case 2:count(c3,2);
}
}
}
void count(char c,int n)
{
switch(c)
{
case 'a':number[0].num+=n;break;
case 'b':number[1].num+=n;break;
case 'c':number[2].num+=n;
}
}
void input()
{
int i;
int m=loadvote();
printf("\n");
number[0].num=number[1].num=number[2].num=0;
for(i=0;i<m;i++)
{
printf("%c %c %c",vote[i].c1,vote[i].c2,vote[i].c3);
if(vote[i].c1==vote[i].c2||vote[i].c1==vote[i].c3||vote[i].c2==vote[i].c3)
printf("\t 该票无效 !\n");
else
{
add(vote[i].c1,vote[i].c2,vote[i].c3);
printf("\n");
}
}
printf("\n\n");
select();
}
void output()
{
int n,i;
n=loadvote();
number[0].num=number[1].num=number[2].num=0;
for(i=0;i<n;i++)
{
if(vote[i].c1==vote[i].c2||vote[i].c1==vote[i].c3||vote[i].c2==vote[i].c3);
else
{
add(vote[i].c1,vote[i].c2,vote[i].c3);
}
}
printf("\n 候选人的得分 :\t");
printf("a: %d\n",number[0].num);
printf("b: %d\n",number[1].num);
printf("c: %d\n\n\n",number[2].num);
select();
}
void main()
{
void choose();
menu();
}
void menu()
{
void choose();
int n,w;
do
{
puts("\t\t^^^^^^^^^^^^ 足球先生投票序 ^^^^^^^^^^^^^^^^^^");
puts("\t\t{ }");
puts("\t\t{ [1. 选票人数 : ] }");
puts("\t\t{ [2. 选票信息 :] }");
puts("\t\t{ [3. 分数 :] }");
puts("\t\t{ [4. 结果 :] }");
puts("\t\t{ [5. 退出 ] }");
puts("\t\t{ }");
puts("\t\t^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^");
printf(" 请选择你的数字 (1-5) :[ ]\b\b");
scanf("%d",&n);
if(n<1||n>5)
{
w=1;
getchar();
}
else w=0;
}while(w==1);
switch(n)
{
case 1:innum();break;
case 2:input();break;
case 3:output();break;
case 4:choose();break;
case 5:exit(0);
}
}
void choose()
{
int c;
if(number[0].num>number[1].num&&number[0].num>number[2].num)
{
c=1;
}
else if(number[1].num>number[0].num&&number[1].num>number[2].num)
{
c=2;
}
else if(number[2].num>number[1].num&&number[2].num>number[0].num)
{
c=3;
}
else
{
printf(" 重新选票 !\n");
main();
}
switch(c)
{
case 1:printf("\n 祝贺 a 当选冠军 !\n\n\n");select();
case 2:printf("\n 祝贺 b 当选冠军 !\n\n\n");select();
case 3:printf("\n 祝贺 c 当选冠军 !\n\n\n");select();
}
}
|
|