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

爬楼梯

时间:2017-03-09 13:07:05      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:package   int   max   ++   money   turn   public   air   tair   

package Maxmoney;
public class Lchar{

public int climbStair(int t) {
if(t == 0){
return 1;
}

int[] ST= new int[t+1];
ST[0] = 1;
ST[1] = 1;

for(int j=2;j<=t;j++){
ST[j] = ST[j-2] + ST[j-1];
}

return ST[t];
}
}

爬楼梯

标签:package   int   max   ++   money   turn   public   air   tair   

原文地址:http://www.cnblogs.com/suojixin/p/6524890.html

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