Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
148690 凌愉晴 计算n的阶乘 C++ 解答错误 66 0 MS 244 KB 157 2024-05-25 14:31:03

Tests(2/3):


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


测评信息: