Problem E: C语言-阶乘数列
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:8009
Solved:4823
Description
求Sn=1!+2!+3!+4!+5!+…+n!之值,其中n是一个数字。
Input
一个整数n(1<=n<=20)
Output
输出表达式的值,占一行.
Sample Input Copy
5
Sample Output Copy
153
HINT
用int可能会溢出,需要用能表示更大范围的long long int(注:VC6.0不支持此类型,VC下使用__int64替代)