[NK]跳台阶

跳台阶
题目描述
一只青蛙一次可以跳上1级台阶,也可以跳上2级。求该青蛙跳上一个n级的台阶总共有多少种跳法(先后次序不同算不同的结果)。

#include "stdafx.h"
#include <iostream>
using namespace std;

class Solution {
public:
    int jumpFloor(int number) {
        if (number == 1)
        {
            return 1;
        }
        else if (number == 2)
        {
            return 2;
        }
        else
        {
            return jumpFloor(number - 1) +jumpFloor(number - 2);
        }
    }
};

int main()
{
    Solution *s = new Solution();
    cout << s->jumpFloor(3) << endl;
    return 0;
}

猜你喜欢

转载自blog.csdn.net/u014630431/article/details/81093288
今日推荐