//转化成排列组合问题,利用杨辉三角公式 class Solution { public: int jumpFloorII(int number) { int ans=1; for(int i=1;i<number;i++){ ans*=2; } return ans; } };