#include <bits/stdc++.h> using namespace std; int f(int x) { if (x == 0 || x == 1) return 1; return f(x - 1) + f(x - 2); } int main() { int x; while (cin >> x) cout << f(x) << "\n"; return 0; }
注册一个 33OJ 通用账户,您就可以在我们提供的所有在线评测服务上提交代码、参与讨论。
使用您的 33OJ 通用账户