Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
168304 彭远智 被限制的加法 C++ 解答错误 0 1 MS 244 KB 191 2024-08-20 09:27:52

Tests(0/12):


#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; }


测评信息: