问题标题: 酷町堂:1243 兔子上楼梯 0分

0
0
已解决
王光裕
王光裕
资深光能
资深光能
  • #include<iostream>
  • #include<cstring>
  • #include<cmath>
  • #include<string>
  • #include<cstdio>
  • #include<algorithm>
  • using namespace std;
  • int tz(int n);
  • int main()
  • {
  • int n;
  • while(cin>>n)
  • {
  • cout<<tz(n)<<endl;
  • }
  • return 0;
  • }
  • int tz(int n)
  • {
  • if(n==1||n==2) return n;
  • return tz(n-1)+tz(n-2);
  • }

0
已采纳
汤启恩
汤启恩
新手光能
新手光能

好像没啥问题??

0
我要回答