本文介绍了c。factorial程序响应的负值超过8的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

void main()
{
int fact=1,a;
printf("enter number");
scanf("%d",&a);
for(int i=1;i<=a;i++)
{
fact=fact*i;
}
printf("factorial of entered number is %d",fact);
}



如果我输入8,为什么它以负值响应?


If I enter 8, why is it responding with a negative value?

推荐答案


这篇关于c。factorial程序响应的负值超过8的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-02 23:57