题解 | #跳台阶#

跳台阶

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]; }
全部评论

相关推荐

听说改名字就能收到offer哈:Radis写错了兄弟
点赞 评论 收藏
分享
评论
1
收藏
分享
牛客网
牛客企业服务