Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
148778 | 邓庆凯hzlz | 计算n的阶乘 | C++ | 通过 | 100 | 0 MS | 248 KB | 224 | 2024-05-25 14:47:33 |
#include<bits/stdc++.h> using namespace std; unsigned long long asd(int x){ if(x==0) return 0; else if(x==1) return 1; else{ return x*asd(x-1); } } int main(){ int n; cin>>n; cout<<asd(n); return 0; }