提交时间:2024-05-25 14:31:17
运行 ID: 148692
#include<bits/stdc++.h> using namespace std; long long f(int x){ if(x==0) return 1; else return f(x-1)*x; } int main(){ int n; cin>>n; cout<<f(n); }