题目描述
一只青蛙一次可以跳上1级台阶,也可以跳上2级。求该青蛙跳上一个n级的台阶总共有多少种跳法。
public class Solution {
public int JumpFloor(int target) {
int fn;
int f1 = 1, f2 = 2;
if(target<0) return 0;
if(target == 1) return f1;
if(target == 2) return f2;
int count = 3;
fn = f1 + f2;
while(count<target){
f1 = f2;
f2 = fn;
fn = f1 + f2;
count++;
}
return fn;
}
}