7-39 计算阶乘和

t

输入格式:

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

输出格式:

在一行中输出S的值。

输入样例:

3

输出样例:

9

ACcode:

#include 

using namespace std;

int main(){
    int n;
    cin >> n;
    int s = 0;
    int factor = 1;
    for(int i=1; i<=n; i++){
        factor *= i;
        s += factor;
    }
    cout << s;
    return 0;
}

你可能感兴趣的:(PTA_c++,算法,c++)