#include"stdio.h"main(){intm,n,i;m=1;printf("pleaseinputn:");scanf("%d",&n);for(i=1;i<=n;i++)m=m*i;printf("1*2*-----n=",m);}这里的n不要输入太大,要不很容易就溢出了。