题解 | #跳台阶#
跳台阶
http://www.nowcoder.com/practice/8c82a5b80378478f9484d87d1c5f12a4
笑死刚开始弄个a[8],不对。又弄个a[30]还不对 /**
- @param number int整型
- @return int整型
- C语言声明定义全局变量请加上static,防止重复定义 */ int jumpFloor(int n ) { // write code here int a[41]={1,2,0}; for (int i=2;i<n;i++) { a[i]=a[i-1]+a[i-2]; } return a[n-1]; }