我想使用 c 中的递归函数查找给定数字的阶乘。以下程序有什么问题?

发布于 2024-10-06 18:32:42 字数 279 浏览 2 评论 0原文

#include<stdio.h>

int fact(int i);
void main()
{
    int j;

    j=fact(4);

    printf("%d",j);
}

int fact(int i){
    int x=i;static int tot=1;

    if(x<1){
        tot=x*fact(x-1);
    }

    return tot;
}

请帮我处理这段代码。这段代码中的wring是什么?

#include<stdio.h>

int fact(int i);
void main()
{
    int j;

    j=fact(4);

    printf("%d",j);
}

int fact(int i){
    int x=i;static int tot=1;

    if(x<1){
        tot=x*fact(x-1);
    }

    return tot;
}

Please help me with this code. What is wring in this code?

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

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

发布评论

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

评论(4

烟花肆意 2024-10-13 18:32:42

您在事实函数中没有基本条件。

您需要检查:

 if(i == 1){
    return 1;
 }else{

   return i * fact(i - 1);

}

You do not have a base condition in the fact function.

You need to check:

 if(i == 1){
    return 1;
 }else{

   return i * fact(i - 1);

}
与之呼应 2024-10-13 18:32:42
if(x<1)

您确定您的意思不是 x > 1?

另外,我会在您的 tot 声明中删除 static 。这将 tot 视为与全局变量类似。你不需要那个。由于 tot 总是在读取之前分配,因此看起来这里没有什么害处,但一般来说,它似乎是一个危险信号。

if(x<1)

Are you sure you didn't mean x > 1?

Also, I would get rid of static in your declaration of tot. This treats tot similarly to a global variable. You don't need that. Since tot is always assigned before read it looks like it's not harmful here, but generally speaking it seems like a red flag.

雪落纷纷 2024-10-13 18:32:42

您不希望在 tot 声明中使用 static

You don't want the static in your tot declaration.

╭⌒浅淡时光〆 2024-10-13 18:32:42

您在 if 语句中打印错误,它应该是

if(x > 1) {
   tot=x*fact(x-1);
}

编辑:此外 tot 必须是非静态的。

You misprinted in if statement, it should be

if(x > 1) {
   tot=x*fact(x-1);
}

EDIT: Also tot must be non-static.

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