gpt4 book ai didi

c - 我的阶乘 C 程序在输出框中没有给出任何值,尽管它没有显示错误

转载 作者:行者123 更新时间:2023-11-30 20:29:36 26 4
gpt4 key购买 nike

c程序

我的阶乘 C 程序虽然没有显示错误,但在输出框中没有给出任何值

 #include<stdio.h>
main()
{
int a,n,t=1;
printf("enter the number\n");
scanf("%d",a);
for(n=1;n<=a;n++)
{
t*=n;
}
printf("the factorial is %d",t);
}

the image

最佳答案

你必须像这样传递变量 a 的地址..scanf("%d", &a);

关于c - 我的阶乘 C 程序在输出框中没有给出任何值,尽管它没有显示错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57292854/

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