编辑代码

#include<stdio.h>
int main()
{
	int x,y=1,sum=0;
	for(x=1;x<=10;x++)
	{
		y=x*y;
		sum=sum+y;
	}
	printf("%d\n",sum);
	return 0;
}