码迷,mamicode.com
首页 > 其他好文 > 详细

牛客(9)变态跳台阶

时间:2018-05-04 12:08:11      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:count   ==   一个   i++   public   floor   描述   多少   static   

//    题目描述
// 一只青蛙一次可以跳上1级台阶,也可以跳上2级……它也可以跳上n级。
// 求该青蛙跳上一个n级的台阶总共有多少种跳法。
public static int JumpFloorII(int target) {
if (target==0||target==1){
return 1;
}
int count=0;
for (int i=1;i<=target;i++){
count += JumpFloorII(target-i);
}
return count;
}

牛客(9)变态跳台阶

标签:count   ==   一个   i++   public   floor   描述   多少   static   

原文地址:https://www.cnblogs.com/kaibing/p/8989434.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!