7-5 计算阶乘和
Posted edviv
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了7-5 计算阶乘和相关的知识,希望对你有一定的参考价值。
题解:两重循环,内层循环求阶乘的值,外层求和。 时间复杂度 O(n^2) 空间复杂度 O(n)
#include <bits/stdc++.h> using namespace std; typedef long long ll; ll ans,n; int main() { std::ios::sync_with_stdio(false); cin.tie(0); cin>>n; for(int i = 1; i <= n; i++) { ll t = 1; for(int j = 1; j <= i; j++) t *= j; ans += t; } std::cout<<ans<<‘ ‘; return 0; }
以上是关于7-5 计算阶乘和的主要内容,如果未能解决你的问题,请参考以下文章