【MAC 上学习 C++】Day 31-5. 实验2-4-4 求阶乘序列前N项和 (15 分)

实验2-4-4 求阶乘序列前N项和 (15 分)

1. 题目摘自

https://pintia.cn/problem-sets/13/problems/415

2. 题目内容

本题要求编写程序,计算序列 1!+2!+3!+⋯ 的前N项之和。

输入格式:

输入在一行中给出一个不超过12的正整数N。

输出格式:

在一行中输出整数结果。

输入样例:

5

输出样例:

153

3. 源码参考
#include 

using namespace std;

int fact(int n);

int main()
{

    int n;
    int s;

    cin>>n;
    s=0;
    for(int i=1;i<=n;i++)
    {
        s+=fact(i);
    }

    cout<

你可能感兴趣的:(【MAC 上学习 C++】Day 31-5. 实验2-4-4 求阶乘序列前N项和 (15 分))