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

发布于 2024-10-11 12:46:51 字数 263 浏览 2 评论 0原文

#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);
}
#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);
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

梦幻之岛 2024-10-18 12:46:52

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

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

That should be scanf("%d", &x);, and probably printf("%d\n", x);.

Also, you're returning something (twice!) from a void function. Your code will not work as it is.

二手情话 2024-10-18 12:46:52

在函数中,如果您打算打印 x 的值,则应该是 printf("%d\n",x);
你缺少 % 符号。函数中的第二个 return 语句也永远不会被执行。

in the function if you are planning to print the value of x it should be printf("%d\n",x);
you are missing % symbol.also the second return statement in your function will never be executed..

躲猫猫 2024-10-18 12:46:52

除了其他人所说的之外,在修复所有其他编程错误之后,您正在将程序引导至无限递归。

On top of what other folks said, after you fix all other programmatic mistakes you are directing your program to an infinite recursion.

巷雨优美回忆 2024-10-18 12:46:52
#include <stdio.h>
void fun(int x)
{    
     if(x<=20000)
     {
     printf("%d\n",x);
      fun(x<<1);     
     printf("%d\n",x);
     }   
 }
main()
{
      int x;
      printf("Enter the number\n");
      scanf("%d",&x);
      printf("\n");
      fun(x);
      system("pause");
}

这是我一直在寻找的正确程序。谢谢大家!

#include <stdio.h>
void fun(int x)
{    
     if(x<=20000)
     {
     printf("%d\n",x);
      fun(x<<1);     
     printf("%d\n",x);
     }   
 }
main()
{
      int x;
      printf("Enter the number\n");
      scanf("%d",&x);
      printf("\n");
      fun(x);
      system("pause");
}

This is the correct program, I was looking for. Thank u all!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文