Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
53485 | littletwleve | 斐波那契数列 | C++ | 解答错误 | 0 MS | 248 KB | 176 | 2024-10-23 15:24:56 |
#include<bits/stdc++.h> using namespace std; int fib(int n){ if(n==1||n==2) return 1; else return fib(n-1)+fib(n-2); } int main(){ int x; cin>>x; cout<<fib(x); }