gpt4 book ai didi

使用 scanf 后 C 程序停止工作

转载 作者:行者123 更新时间:2023-11-30 21:02:04 27 4
gpt4 key购买 nike

所以我有这个C代码

#include <stdio.h>
#include <stdlib.h>

int main()
{
int a;
int b;
int c;
scanf("%d", &b);
scanf("%d", &a);
c = a + b;
printf(c);
return 0;
}

但是,在我插入 a 和 b 的数字后,程序停止工作。请帮我这里是C菜鸟

最佳答案

在您的代码中,以下行是错误的:

printf(c);

因为 printf() 语法就像我在下面写的那样

printf("%d",c);

所以你现在的代码是:

#include <stdio.h>

int main()
{
int a;
int b;
int c;
scanf("%d", &b);
scanf("%d", &a);
c= a + b;
printf("%d",c); //this is the correct printf() syntax
return 0;
}

关于使用 scanf 后 C 程序停止工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33316905/

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