int jumpFloor(int number ) { // write code here //1、第一种,用变量 // int a=1; // int b=1; // int c=1; // while(number>1) // { // a=b; // b=c; // c=a+b; // number--; // } // return c; //2、第二种,数组 动态规划 // int arr[10000]={0}; // ...