zhu_zhu_zhi_shen_zhu @ 2022-07-26 14:34:37
#include<bits/stdc++.h>
using namespace std;
int main(){
long long a,b;
cin >> a;
for(int c=1;c<=a;c++)
{
long long d=1;
for(int e=1;e<=c;e++)
{
d*=e;
}
b+=d;
}
cout << b;
}
by jyc123456 @ 2022-07-26 14:38:19
如果希望通过本题,请继续学习第八章高精度的知识。
by zhu_zhu_zhi_shen_zhu @ 2022-07-26 14:43:23
谢谢