本题要求编写程序,计算序列 1! + 2! + ... 的前N项之和。
输入格式:
输入在一行中给出一个不超过12的正整数N。
输出格式:
在一行中输出整数结果。
输入样例:
5
输出样例:
153
1 #include <iostream> 2 #include <stdio.h> 3 #include <math.h> 4 #include <string> 5 #include <stdlib.h> 6 7 using namespace::std; 8 9 int main(){ 10 11 int sum=0,n; 12 cin>>n; 13 for(int i=1;i<=n;i++) 14 { 15 int temp=1; 16 for(int j=i;j>=1;j--) 17 { 18 temp=temp*j; 19 } 20 sum=sum+temp; 21 } 22 printf("%d",sum); 23 return 0; 24 }