我写了一个求10的阶乘的程序,可是运行不过,是什么问题呢?# include <stdio.h>void main(){ int i,sum; for(i=1;i<=10;i++) sum=sum*i; printf("%d\n",sum);}