Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
31087 lmz120809 爬楼梯 C++ 通过 0 MS 252 KB 207 2023-11-14 21:31:30

Tests(2/2):


#include<iostream> using namespace std; int fib(int n){ if(n<=1) return 1; else return fib(n-1)+fib(n-2); } int main() { int m; while(cin>>m){ cout<<fib(m)<<endl; } return 0; }


测评信息: