<n的阶乘c语言程序-知识大全-春风百科
> 知识大全 > 列表
n的阶乘c语言程序
时间:2024-12-23 19:21:09
答案

#include

int main()

{

int n,i;

long long ans=1;

scanf("%d",&n);

while(n--)

ans*=n;

printf("%lld",ans);

return 0;

}

求采纳

推荐
© 2024 春风百科