对于给定的正整数N,需要你计算 S = 1! + 2! + 3! + … + N!。
输入格式:
输入在一行中给出一个不超过10的正整数N。
输出格式:
在一行中输出S的值。
输入样例:
3
输出样例:
9
1 2 3 4 5 6 7 8 9 10 11 12 13 |
#include <iostream> using namespace std; int main() { int n, ans = 0; cin >> n; for(int i = 1; i <= n; i++) { int temp = 1; for(int j = 1; j <= i; j++) temp *= j; ans += temp; } cout << ans; return 0; } |
❤ 点击这里 -> 订阅《PAT | 蓝桥 | LeetCode学习路径 & 刷题经验》by 柳婼