#include <stdio.h> main() { int s=1,i; printf("输入一个数:"); scanf("%d",&i); while (i>0) { s=s*i; i++; } printf("%d!=%d\n",i,s); }
我这个是输入一个数。然后求它的阶乘。为何报错误。谢谢指教。