Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
140468 李馥甄 斐波那契数列(递归) C++ Accepted 5 MS 272 KB 220 2025-12-14 16:11:59

Tests(15/15):


Code:

#include <bits/stdc++.h> using namespace std; int fbnq(int n){ if(n==0){ return 0; } if(n==1){ return 1; } return fbnq(n-1)+fbnq(n-2); } int main(){ int n; cin>>n; cout<<fbnq(n); return 0; }