求10!,用c语言表示。
#includeint main()
{
int i,t;
t=1;
i=2;
while(i<=10)
t=t*i;
i=i+1;
}
printf("%d\n",t);
return 0;