public class Solution { public int JumpFloorII(int target) { if(target<=0) return 0; if(target==1) return 1; return JumpFloorII(target-1)*2; } }