Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
7578 余立涵 13求n的阶乘 C++ Accepted 0 MS 268 KB 184 2025-05-03 20:19:41

Tests(10/10):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ long long s=1; int n; cin>>n; for(int i=1;i<=n;i++){ s=s*i; } cout<<s<<endl; return 0; }