新手,问题。
我想求1!+2!+3!+..+12!的和。
#include <iostream>
using namespace std;
int main()
{
int a=1,sum=0,b=0;
for(int i=1;i<=12;++i)
{ for(int b=i;b>1;--b)
{
a=b*(b-1);
}
sum=sum+a;
cout<<sum<<endl;
}
system("PAUSE");
}
可结果却是
1
3
5
7
9
11
13
15
17
19
21
23
我想了半天也想不出是哪里出错了,
请前辈求教呀!