8、跳台阶

题目描述
一只青蛙一次可以跳上1级台阶,也可以跳上2级。求该青蛙跳上一个n级的台阶总共有多少种跳法。

public class Solution {
    public int JumpFloor(int target) {
        int f1 = 1;
        int f2 = 2;
        if(target==1){
            return 1;
        }else if(target==2){
            return 2;
        }
        for(int i=3; i<=target; i++){
            int tmp = f2;
            f2 += f1;
            f1 = tmp;
        }
        return f2;
    }
}

你可能感兴趣的:(8、跳台阶)