cs50 - 问题集 3 复数 - 代码编译失败
cs50 - problem set 3 plurality- code failed to compile
我做的代码是针对cs50习题集3复数的。
当我自己 运行 代码时,代码按预期工作。但是,当我 运行 check50 时,出现错误“代码编译失败”。当我 运行 check50 我得到这个错误:
:) plurality.c exists
:( plurality compiles
code failed to compile
:| vote returns true when given name of first candidate
can't check until a frown turns upside down
:| vote returns true when given name of middle candidate
can't check until a frown turns upside down
这是我的代码:
#include <stdio.h>
#include <string.h>
#include <math.h>
#include <ctype.h>
#include <cs50.h>
#include <stdbool.h>
#include <string.h>
int main(int argc, string argv[])
{
if(argc<2)
{
return 1;
}
int cand_count = argc-1;
if ((cand_count)>9)
{
return 1;
}
int scores[]={0,0,0,0,0,0,0,0,0};
int voters_count=get_int("Number of voters: ");
for (int a=0; a<voters_count; a++)
{
string question =get_string("vote: ");
for (int b=0; b<cand_count; b++)
{
if (strcmp( question, argv[b+1]) == 0 )
{
scores[b]=(scores[b]+1);
}
}
}
int highest=0;
int position=0;
for (int d=0; d<9; d++)
{
if ((scores[d])>(highest))
{
highest=scores[d];
position=d;
}
}
printf("%s",argv[position+1]);
}
你能帮我解决这个错误吗?
来自the spec
You should not modify anything else in plurality.c other than the implementations of the vote and print_winner functions (and the inclusion of additional header files, if you’d like).
最好从 distro code 开始。
我做的代码是针对cs50习题集3复数的。 当我自己 运行 代码时,代码按预期工作。但是,当我 运行 check50 时,出现错误“代码编译失败”。当我 运行 check50 我得到这个错误:
:) plurality.c exists
:( plurality compiles
code failed to compile
:| vote returns true when given name of first candidate
can't check until a frown turns upside down
:| vote returns true when given name of middle candidate
can't check until a frown turns upside down
这是我的代码:
#include <stdio.h>
#include <string.h>
#include <math.h>
#include <ctype.h>
#include <cs50.h>
#include <stdbool.h>
#include <string.h>
int main(int argc, string argv[])
{
if(argc<2)
{
return 1;
}
int cand_count = argc-1;
if ((cand_count)>9)
{
return 1;
}
int scores[]={0,0,0,0,0,0,0,0,0};
int voters_count=get_int("Number of voters: ");
for (int a=0; a<voters_count; a++)
{
string question =get_string("vote: ");
for (int b=0; b<cand_count; b++)
{
if (strcmp( question, argv[b+1]) == 0 )
{
scores[b]=(scores[b]+1);
}
}
}
int highest=0;
int position=0;
for (int d=0; d<9; d++)
{
if ((scores[d])>(highest))
{
highest=scores[d];
position=d;
}
}
printf("%s",argv[position+1]);
}
你能帮我解决这个错误吗?
来自the spec
You should not modify anything else in plurality.c other than the implementations of the vote and print_winner functions (and the inclusion of additional header files, if you’d like).
最好从 distro code 开始。