#include
void main()
{
int i;
long int s, t;
t=1;
for(i=1,s=0;i<=10;i++)
{
s=s+t;
t=t*i;
}
printf("%d",s);
}
#include
int main(){
using namespace std;
int s=0,n=1;
for (int i=0;i<=10;i++)
{n*=i;s+=n};
cout<return 0;
}
典型的递归事例,任何一本c++书上都有范例。