1!+2!+3!....+10!的和是吗
#include main() { int i,j,s,p; s=0; for(i=1;i<=10;i++) { p=1; for(j=1;j<=i;j++) p = p*j; s += p; } printf("%d",s); }