Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
168312 彭远智 高精度阶乘 C++ 解答错误 40 1 MS 252 KB 191 2024-08-20 09:33:03

Tests(4/10):


#include<bits/stdc++.h> using namespace std; int js(int x){ if(x==0) return 1; else return x*js(x-1); } int main(){ int x; cin>>x; cout<<x<<"!"<<"="<<js(x)<<endl; return 0; }


测评信息: