| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 155392 | 周荣浩 | n的阶乘 | C++ | Accepted | 1 MS | 276 KB | 208 | 2026-06-07 11:13:53 |
#include<bits/stdc++.h> using namespace std; int output(int x){ if(x==1) return 1; else { return output(x-1)*(x); } } int main (){ int n; cin>>n; cout<<output(n); return 0; }