一:#include"stdio.h"main(){long n,s=0,t=1;for(n=1;n<=6;n++){ t*=n;s+=t;}printf("%ld\n",s);getch();return 0;}