gpt4 book ai didi

c - C 中的预期标识符或 '('

转载 作者:行者123 更新时间:2023-11-30 18:36:57 26 4
gpt4 key购买 nike

我最近开始学习 Edx 上的 CS50 类(class)。我陷入了第二个问题集,因为当我尝试编译代码时,出现此消息:

expected identifier or '(' in C

如果您需要我的代码,这里是:

#include <stdio.h>
#include <cs50.h>

int main (int argc, string argv[])

int key;

{

if (argc != 2)
{
printf("error\n");
}
else
{
key = atoi(argv[1]);

if (key == 0 || key < 0)
{
printf("error");
}
else
{
printf("%i\n", key);
}
}
}

如果我的代码还有其他问题,您能帮我提示一下吗?

最佳答案

int main (int argc, string argv[])
{
int key;

需要在括号内

关于c - C 中的预期标识符或 '(',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39062589/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com