gpt4 book ai didi

c - 调试器显示段错误。无法定位故障

转载 作者:行者123 更新时间:2023-11-30 18:32:54 24 4
gpt4 key购买 nike

#include <stdio.h>
void fun(int x)
{
if(x<=20)
{
printf("d\n",x);
return fun(2*x);
return fun(x/2);
}
}
main()
{
int x;
printf("Enter the number\n");
scanf("%d",x);
fun(x);
}

最佳答案

应该是 scanf("%d", &x);,也可能是 printf("%d\n", x);

此外,您还从 void 函数返回一些内容(两次!)。您的代码将无法按原样运行。

关于c - 调试器显示段错误。无法定位故障,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4638656/

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