Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
74596 sh25_shenpy 求阶乘的和 C++ 通过 0 MS 244 KB 270 2025-11-29 20:12:17

Tests(1/1):


#include <bits/stdc++.h> using namespace std; int main( ) { int n; int x=0,i=1,j=1,sum=1; cin>>n; while(i<=n){ while(j<=i){ sum*=j; j=j+1; } x+=sum; i=i+1; } cout<<x; return 0; }


测评信息: