3 条题解
- 1
信息
- ID
- 343
- 时间
- 1000ms
- 内存
- 256MiB
- 难度
- 1
- 标签
- (无)
- 递交数
- 144
- 已通过
- 107
- 上传者
#include using namespace std; int main() { int n,m=1,h=0,j=1; cin>>n; for(int i=1;i<=n;i++) { while(j<i) { j++; m*=j; } h+=m; } cout<<h; }
#include using namespace std; int main() { int a,s,h; s=1;h=0; cin>>a; for(int i=1;i<=a;i++) { s*=i; h+=s; } cout<<h<<endl; return 0;