Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
53486 | littletwleve | 斐波那契数列 | C++ | 通过 | 0 MS | 244 KB | 196 | 2024-10-23 15:26:35 |
#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); }