Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
103840 吴国懋 斐波那契数列(递归) C++ Accepted 5 MS 272 KB 219 2024-12-29 15:24:47

Tests(15/15):


Code:

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