已解决 周天睿 初级光能 #include<iostream> #include<string> #include<cmath> using namespace std; int m(int x) { if(x==1) return 0; else if(x==2) return 1; return (x-1)*(m(x-1)+m(x-2)); } int main() { int n; cin>>n; cout<<m(n); return 0; } 悬赏30豆!我会采纳最详细的回答 快帮忙看看那里错了 50分