提交时间:2024-11-15 15:00:48
运行 ID: 56695
#include<bits/stdc++.h> using namespace std; int fib(int n){ if(n==1) return 0; else if(n==2) return 1; else return fib(n-1)+fib(n-2); } int main(){ int x; cin>>x; cout<<fib(x); }//zhangsicun is sb!!!!!