gpt4 book ai didi

c - 为什么这段代码有错误?是因为大括号吗?

转载 作者:行者123 更新时间:2023-11-30 20:17:34 25 4
gpt4 key购买 nike

我对编程很陌生。我正在尝试编写代码,但不断出现错误。有人能告诉我为什么下面的代码有错误吗?

抱歉,如果这是一个愚蠢的问题,我对编程非常陌生。

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


int main(void);

int x = get_int ("x: ");
int y = get_int("y: ");

if (x < y);
{
printf("x is less than y\n");
}

最佳答案

定义 main 时忘记用“;”加上括号这意味着它是函数行的末尾,因此您的 main 目前不包含任何内容。对于您的 if 语句也是如此。您的代码应该如下所示

#include <stdio.h>

int main(void)
{
int "enter name variable here" = "enter value here";

if ("enter condition here") {
"things to do then";
}
}

关于c - 为什么这段代码有错误?是因为大括号吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57175965/

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